Htaccess - как убрать слэши с URL-ов сайта

Материал из Wiki - Iphoster - the best ever hosting and support. 2005 - 2024
Перейти к:навигация, поиск
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Доступная цена

htaccess - как убрать слэши с URL-ов сайта

Пример rewrite правил для редиректа с https://site.ru/surf.php/ на https://site.ru/surf.php - убираем слэш с ссылки:

RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} (.*)
RewriteCond %{REQUEST_URI} /$ [NC]
RewriteRule ^(.*)(/)$ $1 [R=301,L]