停止索取index.php ++++++++++

时间:2014-01-17 21:33:33

标签: regex apache .htaccess mod-rewrite redirect

我正在尝试重定向请求root index.php的用户 我正在使用Redirect 301 /index.php http://mywebsite/junk/index.html
虽然这个工作正常如果人们只请求index.php,但现在我收到很多请求 对于index.php ++++(有时候比其他人多++)
有什么我可以添加到Redirect 301 /index.php以包括重定向index.php +++?

1 个答案:

答案 0 :(得分:1)

您可以使用mod_rewrite进行正则表达式功能和更精细的控制:

RewriteEngine On
RewriteRule ^index\.php http://mywebsite/junk/index.html [L,R]