windows下的php运行环境搭建

第一步,配置php运行环境

配置httpd.conf  大约在128行

LoadModule php5_module "E:\php\php\php5apache2_2.dll"


   setHandler application/x-httpd-php

PHPIniDir "E:\php\php"

第二步 php.ini配置时区1008行

date.timezone = PRC

第三步 配置数据库

811行开启拓展

extension_dir = "E:\php\php\ext"
971行
extension=php_mysql.dll
extension=php_mysqli.dll

测试数据库



第四步配置虚拟主机

httpd.conf 519行

Include conf/extra/httpd-vhosts.conf


httpd.conf 200行



    Options Indexes FollowSymLinks

 
    AllowOverride None
    Order deny,allow
    
    Deny from all
    Allow from all


229


    DirectoryIndex index.html index.php

简单配置


    ServerName www.34.com
    DocumentRoot "C:\Users\Administrator\Desktop\teacher"


复杂配置


    ServerName www.34.com
    DocumentRoot "C:\Users\Administrator\Desktop\teacher"



    ServerName www.job.com
    DocumentRoot "E:\job"
    

    Options Indexes 

 
    AllowOverride None
    Order deny,allow
    
    Deny from all
    Allow from all
    DirectoryIndex index.html index.php






注意事项

1.每次修改php.ini和httpd.conf都要重启阿帕奇

2.第一步修改配置httpd.conf时候里面<>不能有空格


你可能感兴趣的:(环境配置)