gpt4 book ai didi

apache - .htaccess 将子域重写到目录

转载 作者:行者123 更新时间:2023-12-03 05:15:05 24 4
gpt4 key购买 nike

是否可以使用.htaccess将子域重写为目录?

示例:

  • http://sub.domain.example/

显示内容

  • http://domain.example/subdomains/sub/

最佳答案

尝试将其放入您的 .htaccess 文件中:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^sub.domain.example
RewriteRule ^(.*)$ /subdomains/sub/$1 [L,NC,QSA]

对于更通用的规则(适用于任何子域,而不仅仅是 sub),请将最后两行替换为:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^(.*)\.domain\.example
RewriteRule ^(.*)$ subdomains/%1/$1 [L,NC,QSA]

关于apache - .htaccess 将子域重写到目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10642426/

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