-1

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

4

2 回答 2

1

This rule in your .htaccess file should be enough:

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

Place the file in the document root.

于 2012-05-22T23:34:52.553 回答
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
于 2012-05-22T23:21:13.043 回答