回答編集履歴

1

コードの追記

2019/01/23 00:54

投稿

poniponiponiki
poniponiponiki

スコア98

test CHANGED
@@ -33,3 +33,47 @@
33
33
  ・エンドポイントから "このサイトに到達できない" または "このページに到達できない"というエラーが返される場合
34
34
 
35
35
   ボットが停止しているため、再デプロイする必要があります。
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+ 追記です。
44
+
45
+ ```
46
+
47
+ <configuration>
48
+
49
+ <system.webServer>
50
+
51
+ <rewrite>
52
+
53
+ <rules>
54
+
55
+ <rule name="Main Rule" stopProcessing="true">
56
+
57
+ <match url=".*" />
58
+
59
+ <conditions logicalGrouping="MatchAll">
60
+
61
+ <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
62
+
63
+ <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
64
+
65
+ </conditions>
66
+
67
+ <action type="Rewrite" url="/" />
68
+
69
+ </rule>
70
+
71
+ </rules>
72
+
73
+ </rewrite>
74
+
75
+ </system.webServer>
76
+
77
+ </configuration>
78
+
79
+ ```