1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

xamppのphpMyAdminをローカルネットワークに公開する

Posted at
\xampp\apache\conf\extra\httpd-xampp.conf
<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
	ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
	Order deny,allow
	Deny from all
	Allow from 127.0.0.0/8
	Allow from 192.168.11.0/24  <--公開する相手のIPアドレス
</LocationMatch>
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?