Настройка во время выполнения

The behaviour of the Apache PHP module is affected by settings in php.ini. Configuration settings from php.ini may be overridden by php_flag settings in the server configuration file or local .htaccess files.

Пример #1 Turning off PHP parsing for a directory using .htaccess

php_flag engine off

Apache configuration options
Name Default Changeable Changelog
engine "1" PHP_INI_ALL Available since PHP 4.0.5.
child_terminate "0" PHP_INI_ALL Available since PHP 4.0.5.
last_modified "0" PHP_INI_ALL Available since PHP 4.0.5.
xbithack "0" PHP_INI_ALL Available since PHP 4.0.5.
Для подробного описания констант PHP_INI_*, обратитесь к документации функции ini_set().

Краткое разъяснение конфигурационных директив.

engine boolean

Turns PHP parsing on or off. This directive is really only useful in the Apache module version of PHP. It is used by sites that would like to turn PHP parsing on and off on a per-directory or per-virtual server basis. By putting engine off in the appropriate places in the httpd.conf file, PHP can be enabled or disabled.

child_terminate boolean

Specify whether PHP scripts may request child process termination on end of request, see also apache_child_terminate().

last_modified boolean

Send PHP scripts modification date as Last-Modified: header for this request.

xbithack boolean

Parse files with executable bit set as PHP regardless of their file ending.

Коментарии

Автор:
An important note:

Even though you turn off the engine with:

php_flag engine off

Doing:

php_flag engine on

does NOT turn it on. You need to instead do:

php_flag engine 1
2011-03-24 16:53:05
http://php5.kiev.ua/manual/ru/apache.configuration.html

    Поддержать сайт на родительском проекте КГБ