我正在尝试重定向请求root index.php的用户
我正在使用Redirect 301 /index.php http://mywebsite/junk/index.html
虽然这个工作正常如果人们只请求index.php,但现在我收到很多请求
对于index.php ++++(有时候比其他人多++)
有什么我可以添加到Redirect 301 /index.php
以包括重定向index.php +++?
答案 0 :(得分:1)
您可以使用mod_rewrite
进行正则表达式功能和更精细的控制:
RewriteEngine On
RewriteRule ^index\.php http://mywebsite/junk/index.html [L,R]