質問編集履歴
3
エラーログ追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -211,3 +211,19 @@
|
|
211
211
|
</IfModule>
|
212
212
|
|
213
213
|
```
|
214
|
+
|
215
|
+
|
216
|
+
|
217
|
+
エラーログはこちら
|
218
|
+
|
219
|
+
```ここに言語を入力
|
220
|
+
|
221
|
+
|
222
|
+
|
223
|
+
[Sun Nov 08 21:38:12.733120 2020] [mpm_winnt:notice] [pid 12028:tid 664] AH00354: Child: Starting 150 worker threads.
|
224
|
+
|
225
|
+
[Sun Nov 08 21:38:18.202586 2020] [authz_core:error] [pid 12028:tid 1920] [client ::1:55187] AH01630: client denied by server configuration: C:/Applications
|
226
|
+
|
227
|
+
[Sun Nov 08 21:38:18.299631 2020] [authz_core:error] [pid 12028:tid 1920] [client ::1:55187] AH01630: client denied by server configuration: C:/Applications, referer: http://localhost/
|
228
|
+
|
229
|
+
```
|
2
httpd-xampp.conf追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,6 +16,8 @@
|
|
16
16
|
|
17
17
|
|
18
18
|
|
19
|
+
httpd.conf
|
20
|
+
|
19
21
|
```ここに言語を入力
|
20
22
|
|
21
23
|
コード
|
@@ -75,3 +77,137 @@
|
|
75
77
|
</Directory>
|
76
78
|
|
77
79
|
```
|
80
|
+
|
81
|
+
httpd-xampp.conf
|
82
|
+
|
83
|
+
```ここに言語を入力
|
84
|
+
|
85
|
+
コード
|
86
|
+
|
87
|
+
#AllowOverride None
|
88
|
+
|
89
|
+
#Options None
|
90
|
+
|
91
|
+
#Require all denied
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
<Files "php-cgi.exe">
|
98
|
+
|
99
|
+
Require all granted
|
100
|
+
|
101
|
+
</Files>
|
102
|
+
|
103
|
+
</Directory>
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
<Directory "C:/xampp/cgi-bin">
|
108
|
+
|
109
|
+
<FilesMatch ".php$">
|
110
|
+
|
111
|
+
SetHandler cgi-script
|
112
|
+
|
113
|
+
</FilesMatch>
|
114
|
+
|
115
|
+
<FilesMatch ".phps$">
|
116
|
+
|
117
|
+
SetHandler None
|
118
|
+
|
119
|
+
</FilesMatch>
|
120
|
+
|
121
|
+
</Directory>
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
<Directory "C:/xampp/htdocs/xampp">
|
126
|
+
|
127
|
+
<IfModule php7_module>
|
128
|
+
|
129
|
+
<Files "status.php">
|
130
|
+
|
131
|
+
php_admin_flag safe_mode off
|
132
|
+
|
133
|
+
</Files>
|
134
|
+
|
135
|
+
</IfModule>
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
AllowOverride AuthConfig
|
140
|
+
|
141
|
+
</Directory>
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
<IfModule alias_module>
|
146
|
+
|
147
|
+
Alias /licenses "C:/xampp/licenses/"
|
148
|
+
|
149
|
+
<Directory "C:/xampp/licenses">
|
150
|
+
|
151
|
+
Options +Indexes
|
152
|
+
|
153
|
+
<IfModule autoindex_color_module>
|
154
|
+
|
155
|
+
DirectoryIndexTextColor "#000000"
|
156
|
+
|
157
|
+
DirectoryIndexBGColor "#f8e8a0"
|
158
|
+
|
159
|
+
DirectoryIndexLinkColor "#bb3902"
|
160
|
+
|
161
|
+
DirectoryIndexVLinkColor "#bb3902"
|
162
|
+
|
163
|
+
DirectoryIndexALinkColor "#bb3902"
|
164
|
+
|
165
|
+
</IfModule>
|
166
|
+
|
167
|
+
Require local
|
168
|
+
|
169
|
+
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
|
170
|
+
|
171
|
+
</Directory>
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
Alias /phpmyadmin "C:/xampp/phpMyAdmin/"
|
176
|
+
|
177
|
+
<Directory "C:/xampp/phpMyAdmin">
|
178
|
+
|
179
|
+
AllowOverride AuthConfig
|
180
|
+
|
181
|
+
Require all granted
|
182
|
+
|
183
|
+
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
|
184
|
+
|
185
|
+
</Directory>
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
Alias /webalizer "C:/xampp/webalizer/"
|
190
|
+
|
191
|
+
<Directory "C:/xampp/webalizer">
|
192
|
+
|
193
|
+
<IfModule php7_module>
|
194
|
+
|
195
|
+
<Files "webalizer.php">
|
196
|
+
|
197
|
+
php_admin_flag safe_mode off
|
198
|
+
|
199
|
+
</Files>
|
200
|
+
|
201
|
+
</IfModule>
|
202
|
+
|
203
|
+
AllowOverride AuthConfig
|
204
|
+
|
205
|
+
Require local
|
206
|
+
|
207
|
+
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
|
208
|
+
|
209
|
+
</Directory>
|
210
|
+
|
211
|
+
</IfModule>
|
212
|
+
|
213
|
+
```
|
1
httpd.conf追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -13,3 +13,65 @@
|
|
13
13
|
|
14
14
|
|
15
15
|
と出てきました。解決策を教えてください。
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
```ここに言語を入力
|
20
|
+
|
21
|
+
コード
|
22
|
+
|
23
|
+
<IfModule ssl_module>
|
24
|
+
|
25
|
+
SSLRandomSeed startup builtin
|
26
|
+
|
27
|
+
SSLRandomSeed connect builtin
|
28
|
+
|
29
|
+
</IfModule>
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
# XAMPP: We disable operating system specific optimizations for a listening
|
34
|
+
|
35
|
+
# socket by the http protocol here. IE 64 bit make problems without this.
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
AcceptFilter http none
|
40
|
+
|
41
|
+
AcceptFilter https none
|
42
|
+
|
43
|
+
# AJP13 Proxy
|
44
|
+
|
45
|
+
<IfModule mod_proxy.c>
|
46
|
+
|
47
|
+
<IfModule mod_proxy_ajp.c>
|
48
|
+
|
49
|
+
Include "conf/extra/httpd-ajp.conf"
|
50
|
+
|
51
|
+
</IfModule>
|
52
|
+
|
53
|
+
</IfModule>
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
Alias / "/Applications/XAMPP/htdocs/laravelapp/public/"
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
<Directory "/Applications/XAMPP/htdocs/laravelapp/public/">
|
62
|
+
|
63
|
+
#Options Indexs FollowSymLinks MultiViews
|
64
|
+
|
65
|
+
#AllowOverride all
|
66
|
+
|
67
|
+
#Order allow,deny
|
68
|
+
|
69
|
+
AllowOverride All
|
70
|
+
|
71
|
+
Require all granted
|
72
|
+
|
73
|
+
#Allow from all
|
74
|
+
|
75
|
+
</Directory>
|
76
|
+
|
77
|
+
```
|