htaccess永久重定向到主页

时间:2015-09-22 06:37:25

标签: php apache .htaccess redirect rewrite

我想在htaccess中编写一条规则,始终将http://example.com/index.aspxhttp://www.example.com/index.aspx重定向到http://example.com

这是我到目前为止所尝试的:

RewriteCond %{REQUEST_URI} ^/index.aspx [NC]
RewriteRule ^(.*)$ http://%1 [R=301,L]

但它无法正常工作。

由于

1 个答案:

答案 0 :(得分:2)

您只能使用一条规则:

RewriteRule ^index\.aspx$ http://%{HTTP_HOST} [NC,R=301,L]