好的,当用户输入www.shareit.me/matt时,我希望将它们带到www.shareit.me/index.html我该怎么做?
答案 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]
将文件放在文档根目录中。