将所有.html重定向到WordPress网址,除了一些.htaccess

时间:2015-10-26 07:23:37

标签: php regex .htaccess mod-rewrite redirect

我有重写规则来重定向以.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可以工作。

  • www.example.com/htmls/index.html
  • www.example.com/htmls/about.html

我不希望删除文件夹/ htmls / for .html中的所有文件。 如何编辑我的.htaccess呢?

谢谢!

1 个答案:

答案 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>