apache添加 扩展php自定义的项目配置方法

模块一: codeigiter, 生成虚拟的访问目录, 访问地址为: http://localhost/codeignite/index.php

<IfModule alias_module>
    Alias /codeignite "D:/Workspaces/CodeIgniter_2.1.2"
 
 <Directory "D:/Workspaces/CodeIgniter_2.1.2">
  AllowOverride None
  Options None
  Order allow,deny
  Allow from all
 </Directory>
</IfModule>

 

模块二: siastest, 生成虚拟的访问目录, 访问地址为: http://localhost/siastest/index.php

<IfModule alias_module>
    Alias /siastest "D:/Workspaces/Test/sias_test"
 
 <Directory "D:/Workspaces/Test/sias_test">
  AllowOverride None
  Options None
  Order allow,deny
  Allow from all
 </Directory>
</IfModule>

你可能感兴趣的:(apache,PHP,httpd)