我正在尝试从以下位置重写网址(没有外部重定向):
http://example.com/support/anything/goes/here
到
http://support.example.com/anything/goes/here
这有效:
RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
RewriteRule ^support/(.*)$ http://support.example.com/$1 [QSA,NC,L]
除了它实际重定向。我尝试使用P标志,但这会导致服务器错误。我想要完成的是什么?