php - Add trailing slash to domain name
Good afternoon!
I need add trailing slash to domain name. For example: fromhttp://www.domain.com
tohttp://www.domain.com/
. I try to add settings to .htaccess:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ /$1/ [L,R=301]
but Wordpress trims trailing slash only in domain name, other addresses work fine:http://www.domain.com/dir
-http://www.domain.com/dir/
Best regards, Deifinger!
Answer
Solution:
is equivalent to
you cannot redirect your url from:
to