質問編集履歴
1
質問内容を変更いたしました。
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$
|
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
|