apache php配置

来源:互联网 发布:杭州朝乾网络 编辑:程序博客网 时间:2024/04/25 23:47

apache上关于php的配置还是比较重要的 记录一下:

    # 加载php模块    LoadFile "/opt/php-5.3.1/php5ts.dll"    LoadModule  php5_module     "/opt/php-5.3.1/php5apache2_2.dll"    # php.ini文件所在目录    PHPIniDir   "/opt/php-5.3.1"    # 接受到php页面请求时,交给php引擎解释,而不是下载页面    AddHandler  php5-script     php    AddType     application/x-httpd-php        .php .php5    AddType     application/x-httpd-php-source .phps    # 将目录的默认索引页面改为index.php    DirectoryIndex index.php