URL转发到索引页面

时间:2012-05-22 23:18:38

标签: php html

好的,当用户输入www.shareit.me/matt时,我希望将它们带到www.shareit.me/index.html我该怎么做?

2 个答案:

答案 0 :(得分:1)

这是我常用的.htaccess文件。我将其转发到index.php,但将其更改为.html,它应该可以正常工作。

Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.html
RewriteRule . index.html

答案 1 :(得分:1)

.htaccess文件中的此规则应该足够了:

RewriteEngine on
RewriteRule ^matt/?$ index.html [NC,QSA]

将文件放在文档根目录中。