gpt4 book ai didi

Apache mod_rewrite 域到子域?

转载 作者:行者123 更新时间:2023-12-04 16:45:57 25 4
gpt4 key购买 nike

我有这个地址http://www.example.com并拥有此页面 http://www.example.com/world .
我可以用 mod_rewrite 做到这一点吗,我的页面变成 http://world.example.com ?
任何链接,教程,...,会很好,如果我能做到这一点?
例如,这些链接将是什么:

  http://www.example.com/world/some-other-page
http://www.example.com/world/and-second-apge

这些链接是否也会被重写为:
 http://world.example.com/some-other-page
http://world.example.com/and-second-apge

另一个问题,这对 SEO 有好处吗?

我很抱歉我的英语不好。

最佳答案

尝试这个:

RewriteEngine On

RewriteCond %{http_host} ^domain.com [nc]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,NC]

RewriteCond %{HTTP_HOST} ^www\.domain\.com$ [NC]
RewriteRule ^world/([a-z0-9\-_\.]+)/?(.*)$ http://$1.domain.com/$2 [QSA,NC,R,L]

所以:
http://www.domain.com/world/page => http://world.domain.com/page

关于Apache mod_rewrite 域到子域?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3898964/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com