【这才刚刚开始】PHP第二天

白天上班空闲,恶补了HTML和DIV+CSS基础知识,晚上8点半到家看视频学习PHP,哈哈,很充实啊!


还在摸索 Apache的配置中,

今天学习了虚拟目录的配置,遇到了一些问题,应该是版本更替的原因,2.2到2.4 ,权限设置有什么不一样么?


在httpd.conf中修改,来配置虚拟目录

1:添加


	#欢迎界面设置
	DirectoryIndex index.html index.htm index.php
	#我的站点别名
	Alias /myblog "D:/myblog"
	#访问权限设置
	
	Order allow,deny
	Allow from all
	

2:注销DocumentRoot路径


重启Apache服务,无法启动。老办法,到计算机事件里,看到以下出错提示:

Invalid command 'Order', perhaps misspelled or defined by a module not included in the server configuration


百度了下,用了http://www.vipaq.com/blog/464.html 中所述办法

将  
Order allow,deny
Allow from all

改成:

Require all granted
可以正常启动服务,但是不是很理解为什么要这改才能正常,有待以后的更多学习!

你可能感兴趣的:(php)