我有wordpress网站,我通过htaccess文件中的条目重定向。主页重定向工作,但子页面不正确。以下是文件的重定向示例。
重定向301 / services / additional-background-screening-services / https://www.inlinereferencecheck.ca/services.html
以上重定向链接指向目标网站上的https://www.inlinereferencecheck.ca/services.html/additional-background-screening-services/
我配置错了吗?顶级链接工作正常
答案 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重写规则块之前。