我有一个运行wordpress的网站,它是完整的网站。其中一个页面就像一个联系我们表格,位于www.ourdomain.com/contact-us /
我还有一个像contactourdomain.com这样的网址,我希望它重定向到www.ourdomain.com/contact-us /
我们过去常常使用网络解决方案的重定向,但我更愿意尽可能在服务器上完成所有操作。我有点工作,但是当你访问链接时仍然将contactourdomain.com/contact-us/作为URL,这会破坏所有其他链接。
有什么建议吗?
答案 0 :(得分:0)
的.htaccess
Options -MultiViews
RewriteEngine on
RewriteBase /
# Rewrite
RewriteRule ^(.*)$ http://www.ourdomain.com/contact-us//$1 [L]
答案 1 :(得分:0)
如果你在.htaccess中添加它是否有效?:
RewriteRule ^$ contact-us/ [R=301,L]
让我发布..