Apache
80端口被占用
到这个目录下\ xampp\apache\conf ,打开httpd.conf,将里边的80端口全部改成一个未被占用的端口,比如8001
443端口被占用
到这个目录 \ xampp\apache\conf\extra ,打开httpd-ssl.conf ,将文件里的443端口全部换成一个未被占用的端口,比如4431
可在界面中Apache-config中找到相应文件:
配置虚拟主机(未解决)
XAMPP的安装目录==>apache==>conf==>extra=>httpd-vhosts.conf。
在文件最下方添加如下代码:
<VirtualHost *:80>
ServerName la88.com ##主机名,自定义
DocumentRoot "D:/XAMPP/virtualhost" ##虚拟主机路径
<Directory "D:/XAMPP/virtualhost">##虚拟主机路径
Options FollowSymLinks IncludesNOEXEC Indexes
DirectoryIndex index.html index.htm index.php
AllowOverride all
Order Deny,Allow
Allow from all
Require all granted
</Directory>
</VirtualHost>
测试访问(按默认虚拟主机地址)
step1 将项目代码拷贝至xampp/htdocs/<项目文件夹>
step2 开启Apache服务
step3 浏览器访问 localhost/htdocs/<项目文件夹>/<index.php所在路径> ,如:
网友评论