我在這裏已經排除特定的文件:How to exclude a specific file in htaccess如何從一個重寫規則
這裏:exclude files from rewrite rule in .htaccess
但既不工作。我可能會做錯什麼?
.htaccess文件:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^wp-content(/.*|)$ - [L] # don't take any action
RewriteRule ^wp-admin(/.*|)$ - [L] # don't take any action
RewriteRule ^wp-includes(/.*|)$ - [L] # don't take any action
RewriteCond %{REQUEST_URI} !^/pureplantessentials\.html$
RewriteRule ^moreinfo/(.*)$ http://www.kgstiles.com/moreinfo$1 [R=301]
RewriteRule ^healthsolutions/(.*)$ http://www.kgstiles.com/healthsolutions$1 [R=301]
RewriteRule ^(.*)\.html$ $1/ [R=301]
RewriteRule ^(.*)\.htm$ $1/ [R=301]
</IfModule>
¿重寫什麼?請舉一些例子。從你的規則集中猜測是不可能的。 –
我想從我的其他規則中排除特定的文件。我將在上面的編輯中發佈我的htaccess文件。 – Christian