.htaccess将所有html文件重定向到index.php

时间:2017-11-02 04:24:33

标签: apache .htaccess redirect mod-rewrite

.htaccess文件存在奇怪问题。 该文件放在目录www.mydomain.com/t/内,看起来像这样:

Options +FollowSymlinks
RewriteEngine on
RewriteRule ^([^/\.]+).html$ ../index.php [R=301]

我想将所有.html文件重定向到我的主页www.mydomain.com

重定向有效但我被重定向到www.mydomain.com/server/file/path/t/index.php而不是www.mydomain.com(或www.mydomain.com/index.php

我在哪里弄错了?

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

添加此规则

RewriteRule ^(.*)$ /index.php?$1 [L]