手机看片精品高清国产日韩,色先锋资源综合网,国产哺乳奶水91在线播放,乱伦小说亚洲色图欧洲电影

linux下如何配置PHP模塊

2016-08-21 17:32:03 15766

加載php?塊,php5apache2_2代表使用的是apache2.2或以上版本 
LoadModule php5_module "c:/php/php5apache2_2.dll" 
PHPIniDir "C:/php" 
配置php文件類型映射 
AddType application/x-httpd-php .php 

配置conf/extra/httpd-vhosts.conf 

<VirtualHost *:80> 

ServerAdmin webmaster@dummy-host.localhost 

DocumentRoot "C:/PhpDocRoot/Site1" 

ServerName localhost 

ServerAlias localhost 

ErrorLog "logs/dummy-host.localhost-error.log" 

CustomLog "logs/dummy-host.localhost-access.log" common 

<Directory "C:/PhpDocRoot/Site1"> 

Options Indexes FollowSymLinks 

AllowOverride None 

Order allow,deny 

Allow from all 

</Directory> 

</VirtualHost> 

<VirtualHost *:80> 

ServerAdmin webmaster@dummy-host2.localhost 

DocumentRoot "C:/PhpDocRoot/Site2" 

ServerName localhost 

ErrorLog "logs/dummy-host2.localhost-error.log" 

CustomLog "logs/dummy-host2.localhost-access.log" common 

<Directory "C:/PhpDocRoot/Site2"> 

Options Indexes FollowSymLinks 

AllowOverride None 

Order allow,deny 

Allow from all 

</Directory> 

</VirtualHost> 

<Directory...>...</Directory> 


提交成功!非常感謝您的反饋,我們會繼續努力做到更好!

這條文檔是否有幫助解決問題?

非常抱歉未能幫助到您。為了給您提供更好的服務,我們很需要您進一步的反饋信息:

在文檔使用中是否遇到以下問題: