Este sitio web utiliza cookies para realizar análisis y mediciones de tus visitas. [ Acepto ] [ Más información aquí ].

How to Add Slashes at the End of URLs

If you want to always add a slash at the end of your URL addresses, add this rule to your .htaccess file:

RewriteEngine On

RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule ^.*[^/]$ /$0/ [L,R=301]

Añadir comentario