teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

質問内容を変更いたしました。

2020/10/30 07:32

投稿

tom_k_92
tom_k_92

スコア7

title CHANGED
File without changes
body CHANGED
@@ -2,9 +2,11 @@
2
2
 
3
3
  ```htaccess
4
4
  RewriteEngine on
5
+ //indexの画面のURLはindex.htmlなしにする
5
6
  RewriteCond %{THE_REQUEST} ^.*/index.html
6
- RewriteRule ^(.*)index.html$ http://ドメイン名/$1 [R=301,L]
7
+ RewriteRule ^(.*)index.html$ https://ドメイン名/$1 [R=301,L]
7
8
 
9
+ //拡張子(.html)のつくURLはすべて拡張子をなくす
8
10
  RewriteCond %{REQUEST_FILENAME} !-d
9
11
  RewriteCond %{REQUEST_FILENAME}.html -f
10
12
  RewriteRule ^(.*)$ $1.html