1

每当我在我的 WAMP 服务器www文件夹中应用 .htaccess 文件时,它都会显示:

内部服务器错误 服务器遇到内部错误或配置错误,无法完成您的请求。请联系服务器管理员 webmaster@ http://www.domain.com 并告知他们错误发生的时间,以及您所做的任何可能导致错误的事情。服务器错误日志中可能提供有关此错误的更多信息

我的 .htaccess 文件是:

Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteRule ^finduser/(.*)/(.*)/$ finduser/finduserResult.php?City=$1&txtAreaRzip=$2 [L,NC]

hhtpd.conf 文件:我已启用 LoadModule rewrite_module modules/mod_rewrite.so。

4

4 回答 4

6

确保您的 wamp rewrite_modue 已打开..

在 APACHE > APACHE 模块 > rewrite_module

于 2014-07-31T05:33:02.563 回答
0

试试做这个功能

RewriteEngine On 
Options All -Indexes
RewriteBase /directoryname/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

其他然后尝试设置 sh4040 插件

于 2014-01-31T05:52:13.210 回答
0

您需要设置以下设置:在 htaccess

php_flag display_errors on

在 php 脚本中需要添加

error_reporting(-1);
ini_set('display_errors', 1);

你会收到错误信息

于 2013-02-21T13:39:34.333 回答
0

请检查错误日志转到目录 cd /var/log/apache2 type ls -->enter。如果您有错误 .htaccess: Invalid comman$

比通过运行命令解决了这个问题。

sudo a2enmod rewrite && sudo service apache2 restart
于 2018-12-28T05:34:37.603 回答