我正在使用名为Vivvo的CMS,而vivvo默认带有.htaccess文件,其中包含以下规则:
RewriteEngine On
RewriteRule ^sitemap\.xml$ index.php [L]
RewriteRule ^(.*)(\.html|\.htm)$ index.php [L]
RewriteRule ^(.*)(\.rss|\.atom|\.txt)$ index.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/?$ index.php [L]
我的webroot中有一个名为book/
的文件夹,我需要从外部访问。但是,无论何时我输入www.mydomain.com/book,vivvo都会将我发送到自定义的404错误页面。
我可以使用什么规则,以使Web服务器忽略“RewriteCond”并让用户转到正确的目录?
我试过这个没有成功:
RewriteRule book/ book/index.php [L]
答案 0 :(得分:1)
试试这个:
RewriteEngine on
RewriteCond %{REQUEST_URI} "/book/"
RewriteRule (.*) $1 [L]
# the rest of your rules...