gpt4 book ai didi

windows-xp - 在 Windows 上为 XAMPP 设置虚拟主机

转载 作者:行者123 更新时间:2023-12-01 06:31:58 25 4
gpt4 key购买 nike

适用于 Windows 1.8.2 PHP 5.4 的 XAMPP,
操作系统:windows xp

我在 XAMPP 上使用用户名和密码

c:\windows\system32\drivers\etc\hosts
127.0.0.1 hindustans.local
127.0.0.1 读.local

E:\My Projects\wesites\read
索引.html

httpd-vhosts.conf

    <Directory "E:/My Projects/wesites/read">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>

<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs"
ServerName localhost
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "E:/My Projects/wesites/read"
ServerName read
Options +Indexes
</VirtualHost>

read.local 适用于 c:\xampp\htdocs

read.local 不适用于 E:\My Projects\wesites\read\index.html

我想从 E:\My Projects\wesites\read 运行我的项目

最佳答案

您需要将 ServerName 与您在 hosts 中的地址相匹配并授予其权限
<VirtualHost *:80>
DocumentRoot "E:/My Projects/wesites/read"
ServerName read.local
<Directory "E:/My Projects/wesites/read" >
Options Indexes FollowSymLinks Includes ExecCGI
Order allow,deny
Allow from all
</Directory>
</VirtualHost>

然后尝试通过 read.local 访问该站点。

更多信息 here

关于windows-xp - 在 Windows 上为 XAMPP 设置虚拟主机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19345381/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com