1、下载安装WAMP
下载地址 http://www.wampserver.com/
备用下载地址:https://pan.baidu.com/s/1dGYXDa5
选择安装路径,一直下一步
完成后,在浏览器输入localhost或者127.0.0.1,出现下面这个页面。
这个页面的路径:
在浏览器输入localhost/index.php或者127.0.0.1/index.php,也可出现上面这个页面。
以后程序放到这个目录下就能运行。但是现实情况下不能放这里。看步骤2
2、配置网站根目录
(1)打开D:\wamp\bin\apache\Apache2.2.21\conf\httpd.conf文件
修改DocumentRoot "D:/wamp/www/" 为DocumentRoot "D:/website/"
修改<Directory "D:/wamp/www/">为<Directory "D:/website/">
以后项目都可以放到这个目录下,打开127.0.0.1,选择项目目录就可以在apache服务器上运行
(如果想让别人在同一个wift下通过电脑或者手机访问你的网站)
(1)win+R,输入cmd,回车
在浏览器输入192.168.1.6即可。如果404,则看步骤3
3、让外网访问本地服务器
(1)打开D:\wamp\bin\apache\Apache2.2.21\conf\httpd.conf文件
找到: Allow from 127.0.0.1
修改: Allow from all
(2)重启Apache
(3)如果还算404,重启路由器,重新ipconfig下看看IPv4地址
4、显示文件目录
(1)打开D:\wamp\bin\apache\Apache2.2.21\conf\httpd.conf文件
找到 <Directory /path/to/directory>
Options -Indexes
</Directory>
修改Options Indexes
(2)重启Apache
5、配置默认的入口文件
(1)打开D:\wamp\bin\apache\Apache2.2.21\conf\httpd.conf文件
<IfModule dir_module>
DirectoryIndex index.html index.xml index.php
</IfModule>
(2)重启Apache