程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP配置

PHP配置

編輯:關於PHP編程

配置選項:
1. php.ini文件的 ;extension=php_pdo_myssql.dll [去掉分號]
2. httpd.conf文件下開啟Apache的rewrite模塊 LoadModule rewrite_module modules/mod_rewrite.so
  AllowOverride None => AllowOverride ALL
3. 配置虛擬主機
# Virtural hosts啟動虛擬主機的配置
Include conf/extra/httpd-vhosts.conf


<VirtualHost *:80>
   ServerAdmin [email protected]
   DocumentRoot "E:/skydao/apache2/htdocs/zendTest/public"
   ServerName zendTest.com
   ServerAlias www.zendTest.com
   DirectoryIndex index.php
   <Directory />
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
   </Directory>   
</VirtualHost>


在hosts文件中加dns
127.0.0.1 zendTest
127.0.0.1 www.zendTest.com
4. 重啟Apache

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved