How to remove trailing slash on URL parameter for SEO friendliness
In .htaccess RewriteEngine On RewriteCond %{QUERY_STRING} ^(.+)/$ RewriteRule ^ %{REQUEST_URI}?%1 [R=301,L,NE] Now all https://sitename.com/url?hello=world/ URLs will become https://sitename.com/url?hello=world If changing the .htaccess file doesn’t seem to