所以我把它重寫爲.html給.php,但是當它需要時它不會加載.html文件。有沒有辦法讓它忽略書店目錄?我以爲我已經在那裏,但它不起作用。.htaccess允許.html
/public_html/.htaccess
Options +FollowSymlinks
DirectoryIndex index.php index.html index.htm
RewriteEngine on
RewriteCond %{REQUEST_URI} "/bookstore/"
RewriteRule ^(.+)\.html$ http://virtualbookworm.com/$1.php [L]
ErrorDocument 404 /error.php
../bookstore/.htaccess
Options +FollowSymlinks
DirectoryIndex index.php index.html index.htm
Options +Indexes
ErrorDocument 404 /error.php
注意,'!-f'告訴mod_rewrite忽略任何實際存在的文件並將它們從重寫中排除。 – 2012-08-13 19:25:28
@MarcB:剛剛添加這個:)謝謝指出:) – 2012-08-13 19:28:27