httpd-xampp.conf:允许使用主机名而不是IP地址访问外部系统?

时间:2017-05-19 15:26:52

标签: php apache phpmyadmin xampp localhost

部署服务器以在内部网络上使用,我可以使用localhost或具有静态IP的10.192.5.78访问PHPmyAdmin

我想访问我的笔记本上没有静态IP的页面,但NSMhostname

目前,httpd-xampp.conf中配置了以下代码。我尝试使用主机名代替IP地址,但MySQL返回错误。

Alias /phpmyadmin "D:/xampp/phpMyAdmin/"
    <Directory "D:/xampp/phpMyAdmin">
        AllowOverride AuthConfig
        Require local
        Require ip 10.192.5.78
        ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
    </Directory>

1 个答案:

答案 0 :(得分:0)

Require host(使用Apache 2.4.25)中使用httpd-xampp.conf

Alias /phpmyadmin "C:/xampp/phpMyAdmin/"
<Directory "C:/xampp/phpMyAdmin">
    AllowOverride AuthConfig
    Require local
    Require host host_name.domain_name
    ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</Directory>