我已经制定了规则,
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-zA-Z0-9_-]+)/?$ user.php?userid=$1
它将http://localhost/username重定向到http://localhost/user.php?id=username工作正常,但对于其他现有文件夹页面仍然重定向到 user.php 页面;不是现有文件夹,例如http://localhost/folder它仍然重定向到http://localhost/folder/?userid=folder,它如何使它适用于现有目录,例如当我输入http://localhost /folder然后页面应该显示 /folder/ 目录???