php與apache的整合、配置虛擬目錄、配置虛擬機器主機

來源:互聯網
上載者:User
php與apache的整合:

1、在apache的conf目錄下的httpd.conf加入

LoadModule php5_module "D:/appserv/php/php5apache2_2.dll"

PHPIniDir "D:/appserv/php"

AddType application/x-httpd-php .php .phtml

2、把php.in-development檔案改成php.ini

3、在php.ini中可以指定對應的功能模組

在這裡我們指定php的擴充庫路徑

extension_dir = ".../php-5.3.5/ext"


配置虛擬目錄:


#direcotory相當於是歡迎頁面
DirectoryIndex index.html index.htm index.php
#你的網站別名
Alias /myblog "D:/myblog"

#這是存取權限設定
Order allow,deny
Allow from all


登出documentroot路徑 #DocumentRoot


配置虛擬機器主機的步驟如下:

1、啟用 httpd-vhosts.conf

在 httpd.conf 檔案中

# Virtual hosts 虛擬機器主機

Include conf/extra/httpd-vhosts.conf

2、在httpd-vhosts.conf檔案中做配置


#配置我們自己的虛擬機器主機

DocumentRoot "d:/myblog"
#這裡配置歡迎首頁面
DirectoryIndex index.html index.htm index.php

Options FollowSymLinks
#不許可別人修改我們的頁面
AllowOverride None
#設定存取權限
Order allow,deny
Allow from all


php.ini中的相關配置:

開啟支援Mysql

extension="php_mysql.dll"

extension="php_mysqli.dll"

開啟支援會圖庫

extension=php_gd2.dll

設定預設時區

date.timezone = Asia/Shanghai

使用socket

extension=php_sockets.dll

使用php擴充功能

extension=php_exif.dll

使用標記

short_open_tag = Off/On

不提示Notic資訊

error_reporting = E_ALL & ~E_NOTICE

以上就介紹了php與apache的整合、配置虛擬目錄、配置虛擬機器主機,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.