在 Apache 中将子页面重写为子域

发布于 2024-12-18 02:41:01 字数 361 浏览 0 评论 0原文

我想将我的子页面重写为 Apache 服务器中的子域。像这样的事情:

www.example.com/mycats/news

我找到

www.news.example.com

了这段代码但不起作用:

RewriteCond %{HTTP_HOST} !^www.example.com$ [NC]
RewriteCond %{HTTP_HOST} ^(www.)?([^.]+).example.com$ [NC]

除了代码之外还需要什么? Apache 和通配符 mod?

感谢您的帮助

I want rewrite my subpage to subdomain in Apache server. Something like this:

www.example.com/mycats/news

to

www.news.example.com

I found this code but not work:

RewriteCond %{HTTP_HOST} !^www.example.com$ [NC]
RewriteCond %{HTTP_HOST} ^(www.)?([^.]+).example.com$ [NC]

And what is need except the code? Apache and wildcard mod?

Thanks for any help

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

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

发布评论

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

评论(1

寄居者 2024-12-25 02:41:01

尝试

RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
RewriteRule ^mycats/(.+)/? http://www.$1.example.com/ [L,R]

如果您不想从外部重定向浏览器,请删除 R

Try

RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
RewriteRule ^mycats/(.+)/? http://www.$1.example.com/ [L,R]

If you don't want to externally redirect the browser, remove the R

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