リクエストを index.html にリダイレクトする .htaccess ファイルを取得しました。
しかし、誰かが要求した場合にのみ、それが欲しい
www.mypage.com/login
彼は次の場所にあるファイルにリダイレクトされます
/html/login.html
ここまで私のファイル:
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.*)$ index.html [NC]
これを実装する方法は?どうも!