Answer the question
In order to leave comments, you need to log in
Htaccess and Bitrix replacing _ with - in the page url?
There is the following code that changes the _ in the url to -
But unfortunately this rule also applies to the admin panel. And as a result, the entire admin panel breaks because of this. How to make _ replaced by - only on the site?
For example
site.ru/primer_primer
changed to
site.ru/primer-primer
Or is there another way?
RewriteRule ^(.*)_(.*)$ /$1-$2 [L,E=uscor:Yes]
Answer the question
In order to leave comments, you need to log in
RewriteCond %{REQUEST_URI} !^/bitrix/.*$ [NC]
RewriteRule ^(.*)_(.*)$ /$1-$2 [L,E=uscor:Yes]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question