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.
我们想将子域重定向到子目录:
customerservice.example.com 到 example.com/customerservice。
这是如何在 .htaccess 文件中完成的?
我以为:
重定向 301 customerservice.example.com example.com/customerservice
我的假设是否正确?
重定向不将完整域作为第一个参数,您必须使用/:
/
Redirect 301 / http://example.com/customerservice
但是,如果此域位于另一个域的同一根目录上,并且您需要匹配域名,则必须使用以下内容:
RewriteCond %{HTTP_HOST} ^customerservice\.example\.com$ RewriteRule ^(.*)$ http://example.com/customerservice/$1 [R=301,L]