使用 .htaccess 将域重定向到另一个 URL

发布于 2024-12-07 21:24:18 字数 315 浏览 0 评论 0原文

我有一个运行 WordPress 的网站,它是完整的网站。其中一个页面就像位于 www.ourdomain.com/contact-us/ 的联系我们表单,

我还有一个类似 contactourdomain.com 的 URL,我希望它重定向到 www.ourdomain.com/contact-us/

我们过去常常通过网络解决方案上的重定向来完成此操作,但如果可能的话,我更喜欢在服务器上完成这一切。我已经可以正常工作了,但是当您访问该链接时,URL 仍然是 contactourdomain.com/contact-us/,这会破坏所有其他链接。

有什么建议吗?

I have a site running wordpress, it's the full site. One of the pages is like a contact-us form located at www.ourdomain.com/contact-us/

I also have a URL like contactourdomain.com and I want it to redirect to www.ourdomain.com/contact-us/

We used to do this with a redirect on network solutions, but I prefer to have it all done right on the server if possible. I've got it sort of working but when you visit the link is still says contactourdomain.com/contact-us/ as the URL, and that breaks all the other ones.

Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟柳画桥 2024-12-14 21:24:18

.htaccess

Options -MultiViews
RewriteEngine on
RewriteBase /

# Rewrite
RewriteRule ^(.*)$ http://www.ourdomain.com/contact-us//$1 [L]

.htaccess

Options -MultiViews
RewriteEngine on
RewriteBase /

# Rewrite
RewriteRule ^(.*)$ http://www.ourdomain.com/contact-us//$1 [L]
别闹i 2024-12-14 21:24:18

如果您将其添加到 .htaccess 中,它可以工作吗?:

RewriteRule ^$ contact-us/ [R=301,L]

随时通知我。

if you add this in .htaccess is it working?:

RewriteRule ^$ contact-us/ [R=301,L]

keep me posted..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文