我有一个Wordpress网站,我想要这个网址:
自动重定向到
http://mywebsite.com/tag/hola的 /
问题是我无法将斜杠放在那里。有人能帮帮我吗?有什么我可以用我的htaccess自动重定向它吗?非常感谢你!
答案 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]