O
O
OKNOZA2014-02-19 23:12:15
URL Handling
OKNOZA, 2014-02-19 23:12:15

How to remove the slash at the end of the URL?

How to remove the slash at the end of the URL using htaccess so that there are no duplicates.

AddDefaultCharset UTF-8
RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
egor_nullptr, 2014-02-20
@OKNOZA

RewriteRule (.+)/$ /$1 [L,R=301]

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question