さて、ユーザーがwww.shareit.me/mattと入力すると、www.shareit.me / index.htmlに移動したいのですが、どうすればよいですか?
質問する
77 次
2 に答える
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 に答える
1
.htaccess ファイルの次のルールで十分です。
RewriteEngine on
RewriteRule ^matt/?$ index.html [NC,QSA]
ファイルをドキュメント ルートに配置します。
于 2012-05-22T23:34:52.553 に答える