【发布时间】:2012-08-10 01:41:15
【问题描述】:
所以我让它将 .html 重写为 .php,但是当我需要它时它不会加载 .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
【问题讨论】:
标签: php html .htaccess directory