我以前在其他主题中都曾见过这个问题,但是不幸的是,它对我没有用。 问题是我需要从2个URL访问同一页面:
http://website.com/product/productname
AND
http://website.com/product/productname/buy.html
应该没有外部重定向,只是在尝试打开第二个URL时打开相同的(第一个)URL。
网站是基于Wordpress的。
答案 0 :(得分:1)
这应该可行:
RewriteEngine On
RewriteRule /test/secondpage/ /your-first-page.html [L]
您必须将其另存为.htaccess文件
如果没有,在Google上搜索,解决方案比这里更多