我有重写规则来重定向以.html结尾的所有页面,并且它工作正常,直到我意识到有文件夹页面我不需要重定向到WP / php网址。
我可以为.htaccess做例外吗?这是我现在的.htacess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule (.+)\.html?$ http://www.example.com/$1/ [R=301,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
我有一个文件夹,我仍然希望.html可以工作。
我不希望删除文件夹/ htmls / for .html中的所有文件。 如何编辑我的.htaccess呢?
谢谢!
答案 0 :(得分:1)
您可以使用RewriteCond
跳过某个文件夹:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/htmls/ [NC]
RewriteRule (.+)\.html?$ /$1/ [R=301,L,NC]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>