如何将我的用户从 example.com / 或 www.example.com 重定向到 new.example.com
但我不想重定向一些特定的网址,例如:
www.example.com/test.php
api.example.com/testo.php
www.example.com/forum/index.php
我做了:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.example.com$
RewriteRule ^(.*)$ http://new.example.com/$1 [R=301,L]
但是网址的规则是什么?