我正在使用xampp安装程序版本的xampp BAsic Package(版本1.8.0)。我在htdocs目录下有一个名为my-proj的项目。当我打开这个项目的主页面时,主页面打开,但是当我在任何其他链接上cilck时,从主页面显示以下错误消息:
The website encountered an error while retrieving http://localhost:xxxx/.../abc.php. It may be down for maintenance or configured incorrectly.
HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request.
我的项目目录/my-proj/public_html/.htaccess中有一个.htaccess文件,.htaccess文件的内容如下:
#####errorpage#####
#ErrorDocument 500 /error/500.html
#####end:errorpage#####
我试图以两种方式运行我的项目 - (1)通过激活c:\ xampp \ apache \ conf中htpd.conf文件中的LoadModule rewrite_module Modules / mod_rewrite.so行并更改行AllowOverride None在htpd.conf文件中的AllowOverride All和(2)通过在htpd.conf中取消激活mod_rewrite行并删除.htaccess文件,但是我无法运行我的项目。
有关如何解决此问题的任何想法,或者任何人都可以建议.htaccess文件的内容应该是什么?