我知道這個標題有一個巴吉爾數量的問題,我已經嘗試過。我想要做的是重定向在url結尾處刪除尾部斜槓
localhost/site/tours/picnics/
到
localhost/site/tours/picnics
但每次我試圖代碼,(這一個實例)
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{THE_REQUEST} \s(.+?)/+[?\s]
RewriteRule ^(.+?)/$ /$1 [R=301,L]
重定向我localhost/picnics
爲一些原因。我不明白爲什麼會發生。我甚至試過RewriteBase /site/
但它沒有任何區別。有人可以指出這個代碼中的問題嗎?
編輯:這裏是我的完整htaccess文件
RewriteEngine On
#RewriteBase /site/
RewriteRule ^destinations/(.*)$ destinations.php?destId=$1 [NC,L]
#RewriteRule ^tours/? tour-listing.php [NC,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{THE_REQUEST} \s(.+?)/+[?\s]
RewriteRule ^(.+?)/$ /$1 [R=301,L]
RewriteRule ^tours/?(.*)$ tour-listing.php?cat=$1 [NC,L]
RewriteRule ^tour/([0-9a-zA-Z]+)$ tour.php?id=$1 [NC,L]
RewriteRule ^hotel/([0-9a-zA-Z]+)$ hotel-details.php?id=$1 [NC,L]
在localhost/site/ – VeeK