301不使用子页面

时间:2017-12-20 15:03:27

标签: wordpress .htaccess redirect

我有wordpress网站,我通过htaccess文件中的条目重定向。主页重定向工作,但子页面不正确。以下是文件的重定向示例。

重定向301 / services / additional-background-screening-services / https://www.inlinereferencecheck.ca/services.html

以上重定向链接指向目标网站上的https://www.inlinereferencecheck.ca/services.html/additional-background-screening-services/

我配置错了吗?顶级链接工作正常

1 个答案:

答案 0 :(得分:0)

不要使用mod_alias'使用更改的URL重定向到重定向,请使用mod_rewrite。 mod_alias适用于您要执行从https://example.com/ *到https://example.org/的简单重定向的情况,但保留本地网址结构。

Mod_rewrite允许更精细的调整控制。把它改成这样的东西:

RewriteEngine On
RewriteRule ^services/additional-background-screening-services/$ https://www.inlinereferencecheck.ca/services.html [R=301,L]

并确保将其放在WP重写规则块之前。