用vim打开apache的核心配置文件
1 | vim /usr/local/apache2/conf/httpd.conf |
找到下面这段文字
123456 | <Directory /> Options FollowSymLinks AllowOverride None Order deny,allow Deny from all </Directory> |
把deny from all 改为allow from all,若不修改访问网站会是禁止访问,显示403!
找到:
1 | AddType application/x-gzip .gz .tgz |
在其下面添加:
1 | ddType application/x-httpd-php .php //添加支持对php脚本解析 |
找到:
123 | <IfModule dir_module> DirectoryIndex index.html </IfModule> |
把中间那一行改为:
1 | DirectoryIndex index.html index.htm index.php //增加对php的索引 |
在找到
1 | #ServerName www.example.com:80 |
把其改为:
1 | ServerName localhost:80 //注意把前面的“#”去掉如果不去掉#时,启动时会有警告信息,但是没有影响,仍可以启动apache |
1 | 用/usr/local/apache2/bin/apachectl -t检测,看配置是否有问题,如果显示Syntax OK则说明配置没问题! |
1 | /usr/local/apache2/bin/apachectl start 启动apacche |
测试是否能够解析php
1234 | 写如一个php文件:vim /usr/local/apache2/htdocs/1.php <?php echo "php running" ; ?> |
保存后在浏览器输入http://你的ip/1.php看是否会显示写入的内容即 “php running”
如果访问的过程中出现有问题,可能是防火墙未关闭的原因:
12 | iptables -F 清楚防火墙的规则, service iptables save //保存防火墙的规则 |
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦