質問編集履歴
1
htmlソースの追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -23,7 +23,7 @@
|
|
23
23
|
|
24
24
|
### 該当のソースコード
|
25
25
|
|
26
|
-
```
|
26
|
+
```.htaccess
|
27
27
|
Action myphp-script /php.cgi
|
28
28
|
AddHandler myphp-script .php .html
|
29
29
|
|
@@ -35,4 +35,52 @@
|
|
35
35
|
RewriteCond %{REMOTE_ADDR} !=101.00.00.00
|
36
36
|
RewriteRule ^.*$ - [R=503,L]
|
37
37
|
</IfModule>
|
38
|
+
```
|
39
|
+
```html
|
40
|
+
<!DOCTYPE html>
|
41
|
+
<html lang="ja">
|
42
|
+
|
43
|
+
<head>
|
44
|
+
<meta charset="UTF-8">
|
45
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
46
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
47
|
+
<title>メンテナンス中です</title>
|
48
|
+
|
49
|
+
<style>
|
50
|
+
body,
|
51
|
+
svg,
|
52
|
+
div,
|
53
|
+
h1,
|
54
|
+
h2,
|
55
|
+
p {
|
56
|
+
margin: 0;
|
57
|
+
padding: 0;
|
58
|
+
}
|
59
|
+
|
60
|
+
body {
|
61
|
+
background-color: #fff;
|
62
|
+
font-family: Meiryo, sans-serif;
|
63
|
+
display: flex;
|
64
|
+
justify-content: center;
|
65
|
+
align-items: center;
|
66
|
+
}
|
67
|
+
</style>
|
68
|
+
</head>
|
69
|
+
|
70
|
+
<body>
|
71
|
+
<div class="container">
|
72
|
+
<svg id="基本データ" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200"
|
73
|
+
height="90.471" viewBox="0 0 200 90.471">
|
74
|
+
<defs>
|
75
|
+
<style></style>
|
76
|
+
<linearGradient ・・・
|
77
|
+
</svg>
|
78
|
+
<h1>ただいまメンテナンス中です</h1>
|
79
|
+
<p>Webサイトリニューアル作業のため、サービスを停止しています。<br>
|
80
|
+
ご利用の皆様にはご迷惑をおかけしますが、メンテナンス終了まで今しばらくお待ちください。</p>
|
81
|
+
<h2>メンテナンス期間</h2>
|
82
|
+
<p>2021年3月1日(月) 9:00〜12:00(予定)</p>
|
83
|
+
</div>
|
84
|
+
</body>
|
85
|
+
</html>
|
38
86
|
```
|