尾部斜杠出错

时间:2011-11-26 02:05:50

标签: wordpress .htaccess slash trailing

我有一个Wordpress网站,我想要这个网址:

http://mywebsite.com/tag/hola

自动重定向到

http://mywebsite.com/tag/hola /

问题是我无法将斜杠放在那里。有人能帮帮我吗?有什么我可以用我的htaccess自动重定向它吗?非常感谢你!

1 个答案:

答案 0 :(得分:1)

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