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.
我需要重定向所有流量,如下所示:
mydomain.com/a/b/c => www.mydomain.com/a/b/c
应保留所有 url 信息,仅修改域。
谢谢。
山姆
就像是:
RewriteEngine on RewriteCond %{HTTP_HOST} ^mudomain.com[nc] RewriteRule ^(.*)$ http://www.mydomain.com/$1 [r=301,nc]