我想刪除的1斜線,只有1網址我該怎麼做301重定向到特定的位置
這個片段將刪除所有
# Remove the trailing slash
RewriteCond %{HTTP_HOST} ^(www.)?example\.com$ [NC]
RewriteRule ^(.+)/$ http://www.example.com/$1 [R=301,L]
,但我只是想改變
example.com/changeme/
到
example.com/changeme
任何想法如何改變這個htaccess我只能做到一個
什麼^(+/changeme之間的差異。 )和^(changeme) – Trace
感謝您的問題,我剛剛意識到我的答案不能正確,所以我正在更新它。 – Gerry