Htaccess php tips and tricks for the Apache HTTPD Web Server, mostly these tips show you how to run customized versions with customized php.ini files, I require custom php.ini files because they are so useful!
Even more detailed php tips can be found at custom php.ini tips and tricks
« Custom HTTP Headers | .htaccess Tutorial Index | » SEO Search Engine Friendly Redirects without mod_rewrite
Place your php.ini file in the dir of your cgi'd php, in this case /cgi-bin/, .htaccess might look something like:
AddHandler php-cgi .php .htm Action php-cgi /askapache.com/cgi-bin/php5.cgi
Article: Custom PHP.ini tips and tricks
Add this to your root .htaccess file. Say your php.ini is in folder /askapache.com/ini/
SetEnv PHPRC /askapache.com/ini
You can use FastCGI on php by creating a php binary for cgi execution, then you create a fcgi wrapper script that execs the php using FastCGI
Article: Custom php.ini/FastCGI/DreamHost
#!/bin/sh export PHP_FCGI_CHILDREN=3 export PHPRC=/askapache.com/ini exec /askapache.com/cgi-bin/php.cgi # or #exec /askapache.com/cgi-bin/php.cgi -c /askapache.com/ini/php.ini
« Custom HTTP Headers | .htaccess Tutorial Index | » SEO Search Engine Friendly Redirects without mod_rewrite