我正在开发一个运行OS X Lion和PHP 5.3.6的mac,并尝试将AddType
,AddHander
和AllowOverride
都设置为ALL
在httpd.conf中;但是,HTML / JS / CSS文件中的PHP代码仍然被解析为文本。以.php结尾的文件都很好。经过数小时的谷歌搜索后,我现在变得非常绝望。
以下是我的.htaccess
文件的内容:
AddType application/x-httpd-php5 .html .js .css
AddType application/x-httpd-php .html .js .css
AddHandler application/x-httpd-php5 .html .js .css
AddHandler application/x-httpd-php.html .js .css
答案 0 :(得分:1)
如果您的网站存储在用户的Sites
文件夹中(例如/Users/username/Sites/
),那么您还需要在AllowOveride
中的用户特定配置文件中设置/etc/apache2/users/username.conf
。完成更改后,通过在“共享”首选项窗格中禁用并重新启用Web共享来重新启动Apache。
答案 1 :(得分:0)
AddType程序(至少在 Mac OS X服务器上)需要:
扩展名前没有点
AddType application/x-httpd-php php
请查看/private/etc/apache2/httpd.conf
以了解运行示例。
(您还应该删除AddHandler程序。)