1

htaccessでページ拡張(すなわちprofile.html)を削除する方法は?したがって、www.mysite.com / profile.htmlをロードした場合、それを削除するにはprofile.htmlが必要です。

これにより、index.htmlのみが削除されます。profile.htmlに変更すると、mysite.comに移動し、ホームページが読み込まれます。

Options +FollowSymLinks
RewriteEngine On
RewriteCond %{THE_REQUEST} \/index.html\ HTTP [NC]
RewriteRule (.*)index.html$ /$1 [R=301,L]
4

0 に答える 0