htaccess 将所有请求从子文件夹重定向到子域

发布于 2024-12-14 13:08:35 字数 343 浏览 1 评论 0原文

我有以下 (WordPress) URL 规范结构:

http://mysite.com/2011/10/my-post-name/

我想从 http:// 发送所有请求mysite.com/2011/... 到子域上的同一位置。

具体来说应该是:

http://mysite.com/2011/10/my-post-name/ ---> http://subdomain.mysite.com/2011/10/my-post-name/

我不确定正确的语法是什么,有人知道吗?

I have the following (WordPress) URL canonical structure:

http://mysite.com/2011/10/my-post-name/

I want to send all requests from http://mysite.com/2011/... down to the same location on a subdomain.

So specifically that should be:

http://mysite.com/2011/10/my-post-name/ ---> http://subdomain.mysite.com/2011/10/my-post-name/

I'm not sure what the correct syntax is for this, does anyone know?

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

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

发布评论

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

评论(1

噩梦成真你也成魔 2024-12-21 13:08:35
RewriteEngine on
RewriteCond %{HTTP_HOST} ^mysite.com$
RewriteRule (.*) http://subdomain.mysite.com$1 [R=301]

如果您还需要匹配路径的第一部分,则使用

RewriteEngine on
RewriteCond %{HTTP_HOST} ^mysite.com$
RewriteRule ^/2011/(.*) http://subdomain.mysite.com/2011/$1 [R=301]

您应该阅读 mod_rewrite 文档。第一次会让人感到困惑,但是大约 25 次之后,它就会变得很有意义并且对你很有帮助。

RewriteEngine on
RewriteCond %{HTTP_HOST} ^mysite.com$
RewriteRule (.*) http://subdomain.mysite.com$1 [R=301]

If you also need to match the first part of the path, then use

RewriteEngine on
RewriteCond %{HTTP_HOST} ^mysite.com$
RewriteRule ^/2011/(.*) http://subdomain.mysite.com/2011/$1 [R=301]

You should read the mod_rewrite documentation. It's confusing the first time, but after the 25th time or so it will make pretty good sense and serve you well.

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