XAMPPで設定画面を他のPCから開こうとすると403エラーで拒否されてしまう。
\xampp\apache\conf\extra\httpd-xampp.conf
の最後のセクションあたりで設定をしているので
1
2
3
4
5
6
7
8
9
|
<locationmatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
Order deny,allow
Deny from all
Allow from 127.0.0.0/8
Allow from 192.168.1.0/24 #< -追加した行
ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>
</locationmatch> |
というように、アクセスを許可するIPを追加するとよいだろう