我有www.example.com
之类的网站,并且此页面已重定向至www.newdomain.com
,编写规则位于某处。不在根目录中。
当我输入www.example.com/about-us
时,其重定向到www.newdomain.com/about-us
并显示未找到404页面。我想将所有子页面从example.com
重定向到example.com
主页。
我使用了以下代码,但无法正常工作。
RewriteEngine On
RewriteRule ^parent/(?!index\.php).+)$ /parent/index.php [L,NC]