域未在 XAMPP 而不是本地主机上配置

Domain not configuring on XAMPP instead of localhost

7 个月前我进行了一次讨论 here。然后在我的笔记本电脑上,我可以根据那里告诉我的方式和内容,轻松地通过名称 WordPress.test 配置本地域。一切正常。我今天在桌面上安装了 xampp 并做了同样的事情。

同一文件可在 2 different paths 获得。

我把这段代码放在两个文件中:

<VirtualHost *:80>
    SetOutputFilter DEFLATE 
    <Directory "F:\codegorithm\wordpress">  #any path to which you wish to apply gzip compression to!
    Options All
    AllowOverride All
    Require all granted
        <IfModule mod_deflate.c>
            AddOutputFilterByType DEFLATE text/plain
            AddOutputFilterByType DEFLATE text/html
            AddOutputFilterByType DEFLATE text/xml
            AddOutputFilterByType DEFLATE text/css
            AddOutputFilterByType DEFLATE application/xml
            AddOutputFilterByType DEFLATE application/xhtml+xml
            AddOutputFilterByType DEFLATE application/rss+xml
            AddOutputFilterByType DEFLATE application/javascript
            AddOutputFilterByType DEFLATE application/x-javascript
        </IfModule>
    </Directory> 
    DocumentRoot "F:\codegorithm\wordpress"  
    ServerName wordpress.test
</VirtualHost>

它没有在浏览器中连接并给出 this error(XAMPP 重启了很多次)。

我修好了。该文件也将被修复 → C:\Windows\System32\drivers\etc = hosts.

#
127.0.0.1 localhost
127.0.0.1 wordpress.test