0

我正在使用一个名为 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]
4

1 回答 1

1

试试这个:

RewriteEngine on

RewriteCond %{REQUEST_URI} "/book/"
RewriteRule (.*) $1 [L]
# the rest of your rules...
于 2012-07-30T16:43:16.443 回答