我正在尝试使用 htaccess将http://test.pearlsquirrel.com/explore_all?u=hiphop重定向到http://test.pearlsquirrel.com/explore_all/hiphop 。但是,它一直在这里重定向:http ://test.pearlsquirrel.com/explore_all/?u=site_error.php 。我在 Stackoverflow 上到处寻找答案,但我似乎找不到它。我真的很感激在解决这个问题方面的一些帮助,谢谢!
这是我的 .htaccess 文件
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.pearlsquirrel.com$ [NC]
RewriteRule ^(.*)$ http://pearlsquirrel.com/$1 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^([^/]+)/$ $1.php
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ /$1/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+) explore_all?u=$1 [L]