将特定URL重定向到同一域的另一个特定URL

时间:2018-07-23 06:10:48

标签: wordpress

我一直在使用wordpress网站。我想重定向一些网址。例如:

http://example.com/testhttp://example.com/final/game

我尝试使用htaccess,但没有成功。

3 个答案:

答案 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