- 论坛徽章:
- 2
|
本帖最后由 aa673 于 2011-06-15 18:59 编辑
################################################
<VirtualHost *:80>
ServerName www.haha.com
ServerAlias xixi.com
DocumentRoot /data1/www/htdocs/haha/
ErrorLog /data1/www/logs/wanwan.games.sina.com.cn-error_log
CustomLog /data1/www/logs/wanwan.games.sina.com.cn-access_log combine
RewriteEngine on
RewriteCond %{REQUEST_URI} ^xixi.com$ [nc]
RewriteRule !^/cache/(.*)$ - [C]
RewriteRule ^/(.*)$ /yr/$1/ [L]
<IfModule dir_module>
DirectoryIndex index.php index.html index.shtml
</IfModule>
</VirtualHost>
这是我apache虚拟主机的配置,现在我有个需求,就是用户访问xixi.com时,访问的是根目录的yr/ .
但是我在测试时用 xixi.com/web/ 没问题(我根目录下yr/web目录有个index.php)
但是用xixi.com/web 就会301跳转到 www.haha.com/web/
这时访问的是根目录下web目录里的index.php
大家知道怎么解决吗? |
|