使用 .htaccess 将所有子域 url 重定向到特定 url

发布于 2024-12-09 18:50:15 字数 389 浏览 0 评论 0原文

如何将

(anything).example.com/(anything) 重写为 example.com/(anything)

例如:

img1.example.com/test1 .jpgexample.com/test1.jpg

img105.example.com/anotherimage.pngexample.com/anotherimage.png代码>

tdr.example.com/a.cssexample.com/a.css

how to rewrite like

(anything).example.com/(anything) to example.com/(anything)

for example :

img1.example.com/test1.jpg to example.com/test1.jpg

img105.example.com/anotherimage.png to example.com/anotherimage.png

tdr.example.com/a.css to example.com/a.css

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

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

发布评论

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

评论(1

¢蛋碎的人ぎ生 2024-12-16 18:50:15
RewriteCond %{HTTP_HOST}  ^(.*)\.example.com$
RewriteCond %{HTTP_HOST}  !^www\.example.com$
RewriteRule ^(.*)$  http://www.example.com/$1 [R=301,L]
RewriteCond %{HTTP_HOST}  ^(.*)\.example.com$
RewriteCond %{HTTP_HOST}  !^www\.example.com$
RewriteRule ^(.*)$  http://www.example.com/$1 [R=301,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文