0

I import a project via tortoise-svn to inside my wamp server's www folder.

but I got

Internel Sever Error

in apache error log>

[Fri Aug 24 11:04:45 2012] [alert] [client 127.0.0.1] C:/wamp/www/Myproject/.htaccess: Invalid command 'Header', perhaps misspelled or defined by a module not included in the server configuration, referer:http://localhost/

this may not affect to that: that project use zend, i set include_path in php.ini file like this

include_path = ".;c:\php\includes;C:\wamp\www\ZendFramework-1.11.12\library\Zend"

but that project already have zend inside library folder.

4

1 回答 1

0

确保这在您的 apache 配置中未注释:

LoadModule headers_module modules/mod_headers.so

Header指令是 mod_headers 的一部分。如果没有加载该模块,它将引发错误。

于 2012-08-24T06:16:51.330 回答