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.
我一直在四处寻找,但找不到以下内容。我想知道是否可以将我的整个 WordPress 博客重定向到除根或主页本身之外的新域。任何朝着正确方向的推动都会很棒。我希望我不是在这里问一个愚蠢的问题!
提前感谢任何有时间查看我的问题的人。
是的,你可以,试试这个代码:
RewriteEngine on RewriteRule ^(index.php)?$ - [L] RewriteCond %{HTTP_HOST} ^(www\.)?olddomain\.com$ [NC] RewriteRule ^(.+)$ http://www.newdomain.com/$1 [R=301,QSA,L]