如何从以下重写规则中排除特定文件类型(xml 和 txt)?

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://website.com/$1/ [QSA,L,R=301]

最佳答案

关于什么 :

RewriteCond %{REQUEST_URI} !\.(xml|txt)$

关于.htaccess - 如何从以下.htaccess重写规则中排除特定的文件类型?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5494542/

10-13 00:10