[ Team LiB ] |
Recipe 8.15 Enabling PHP Script HandlingProblemYou want to enable PHP scripts on your server. SolutionIf you have mod_php installed, use AddHandler to map .php and .phtml files to the PHP handler: AddHandler application/x-httpd-php .phtml .php DiscussionThis recipe maps all files with .phtml or .php to the PHP handler. You must ensure that the mod_php module is installed. See Also
|
[ Team LiB ] |