我有这个非常基本的重写规则,无论我尝试什么,都会导致错误 500。
RewriteEngine On
RewriteRule ^folder/(.*) /folder/index.php?Alias=$1 [L]
我的 httpd.conf 文件有以下内容:(这对我来说似乎没问题)
<Directory "/var/www/html">
Options -Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
<IfModule mod_suphp.c>
suPHP_Engine On
suPHP_UserGroup webapps webapps
SetEnv PHP_INI_SCAN_DIR
</IfModule>
</Directory>
关于可能出现问题的任何建议?我还尝试$
在我的重写规则末尾添加。