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]