在 Apache 中将子页面重写为子域
我想将我的子页面重写为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
如果您不想从外部重定向浏览器,请删除
R
Try
If you don't want to externally redirect the browser, remove the
R