我的一个网址没有重定向

时间:2015-03-03 13:20:55

标签: .htaccess redirect url-redirection

我想问一下,当我将.htaccess文件上传到我的hostgator服务器时,我的一个url无法正常工作

url:email / admin / index.php

这里的htacces代码:

RewriteEngine on
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteRule ^index\.php$ http://www.appynator.com/ [R=301,L]
RewriteCond %{HTTP_HOST} ^appynator\.com [NC]
RewriteRule (.*) http://www.appynator.com/$1 [L,R=301]

1 个答案:

答案 0 :(得分:0)

尝试将第一条规则更改为:

RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /(.*)index\.php(\?|\ )
RewriteRule ^ http://www.appynator.com/%1 [R=301,L]