htaccess - 从 domain.com/index.php 重定向到 domain.com?

htaccess - 从 domain.com/index.php 重定向到 domain.com?

是否可以在 htaccess 中执行重写规则,从 www.example.com/index.php 重定向到 www.example.com?

谢谢!

答案1

我假设 index.php 不是 www.example.com 的 DocumentRoot,因此您只是重定向到 DocumentRoot。如果是这样,请使用以下命令:

Redirect 301 /index.php http://www.example.com

相关内容