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.
我用过
RewriteEngine on RewriteRule (.*) http://newdomain.com/$1 [R=301,L]
成功地从 重定向http://olddomain.com到http://newdomain.com。但是子页面http://olddomain.com/subpage仍然没有重定向到http://newdomain.com/subpage
http://olddomain.com
http://newdomain.com
http://olddomain.com/subpage
http://newdomain.com/subpage
如何做呢?
最简单的解决方案可能是在 RewriteEngine 上线之前放置以下规则:
RedirectMatch 301 (.*) http://newdomain.com$1
这应该绕过您可能拥有的任何重定向规则或冲突,并强制所有内容重定向。