概述
1.xampp具体的安装与配置可以参考一下文章,总结的很详细
http://blog.csdn.net/aoshilang2249/article/details/46934419
2.部署本地的PHP项目
修改apache的 httpd.conf文件
ServerRoot "E:/xampp/apache"
DocumentRoot "D:/smartseal/web/tp5/public"
<Directory "D:/smartseal/web/tp5/public"></Directory>
然后就可以通过localhost:80访问,注意端口号的冲突
3.运行php虚拟主机
详细的步骤可以参考:http://blog.csdn.net/u012426959/article/details/78923192
修改本机hosts指定域名 C:WindowsSystem32driversetchosts
127.0.0.1 smartseal.com
在apacheconfextra的httpd-vhosts.conf文件后面
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host2.example.com
DocumentRoot "D:/smartseal/web/tp5/public"
ServerName smartseal.com
ErrorLog "logs/dummy-host2.example.com-error.log"
CustomLog "logs/dummy-host2.example.com-access.log" common
<Directory "D:/smartseal/web/tp5/public">
AllowOverride All
Options None
Require all granted
</Directory>
</VirtualHost>
然后就可以在浏览器中通过smartseal.com来访问项目了
最后
以上就是阳光水壶为你收集整理的XAMPP本地配置PHP项目的全部内容,希望文章能够帮你解决XAMPP本地配置PHP项目所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复