我如何才能从多个不同的URL访问相同的帖子类型的“页面”? 时间:2020-05-13 作者:Jordi Valls 我正在开发一个Wordpress网站,我对permalinks有一个问题。我需要处理以下情况:http://domain/center1/ -> 重写到“template\\u home\\u page”(具有不同的永久链接)http://domain/center1/students -> 重写为“template\\u students\\u page”(具有不同的永久链接)http://domain/center2/ -> 重写到“template\\u home\\u page”(具有不同的永久链接)http://domain/center2/students -> 重写为“template\\u students\\u page”(具有不同的永久链接)我认为使用add\\u rewrite\\u url和add\\u rewrite\\u标记可以做到这一点,但我不知道如何做到。有什么想法吗?非常感谢。 1 个回复 SO网友:Yash Tiwari 如果要将一个页面重定向到另一个页面,则可以使用。htaccess文件中添加以下规则。htaccess:重定向301http://domain/center1/ https://example.com/sample-page不要忘记更改示例URL。您将能够在规则中添加多个重定向。htaccess文件,根据您的需要。 文章导航