我一直在使用wordpress网站。我想重定向一些网址。例如:
http://example.com/test到http://example.com/final/game
我尝试使用htaccess,但没有成功。
答案 0 :(得分:1)
尝试一下
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RedirectMatch 301 /test/ /final/game/
</IfModule>
# END WordPress
答案 1 :(得分:1)
如果这是一个wordpress网站,那么您不必在htaccess上浪费时间,您只需使用其他重定向插件即可重定向您的url。最受欢迎的插件之一是here
答案 2 :(得分:0)
似乎您从重定向中丢失了http://:
重定向301 / test / http://example.com/final/game