Remove / from url at the end

Status
Not open for further replies.
2 comments
Add this rule to your .htaccess file to remove slashes at the end of the URL addresses on your website:

RewriteEngine On
RewriteBase /
RewriteRule ^(.*)/$ /$1 [L,R=301]

/ need to remove from apache/nginx config file.
 
Status
Not open for further replies.
Back
Top