我在本地系统中使用xampp,连接到网络。现在我只需要在我的系统上安装一个特定的服务,例如limesurvey或wordpress,可以通过整个网络访问。但我不希望其他人可以访问xampp登陆页面或phpmyadmin。
如何实现这一目标?
现在任何人都可以访问整个xampp
,包括phpmyadmin
。
在档案httpd-xampp.conf
现在我正在使用以下设置
<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
Order deny,allow
#Deny from all
Allow from ::1 127.0.0.0/8 \
fc00::/7 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 \
fe80::/10 169.254.0.0/16
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
如果我可以为默认xampp
页面或phpmyadmin
设置一些密码,那么这也适用于我,因为服务器没有任何其他服务。
答案 0 :(得分:1)
第5步可能对您有所帮助。请完整阅读以下教程。
http://make.wordpress.org/core/handbook/installing-a-local-server/installing-xampp/
此致 ArunRaj。