Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不太熟悉正则表达式和 .htaccess 重写和重定向。我有以下内容:
www.site.com/subDomainName
我希望它重定向到
subDomainName.site.com.
我能够获得一些代码来进行重定向,但它一直被指向 www.subDomainName.site.com。
尝试将这些规则添加到文档根目录中的 htaccess 文件中:
RewriteEngine On RewriteCond %{HTTP_HOST} !^subDomainName\.site\.com$ [NC] RewriteRule ^subDomainName(.*)$ http://subDomainName.site.com$1 [L,R]
要使重定向永久化,R请将方括号中的标志更改为R=301.
R
R=301