A
A
Alexander2019-08-10 02:37:08
htaccess
Alexander, 2019-08-10 02:37:08

How to make a redirect from pages with numbers to a section through .htaccess?

Help with setting up all pages starting with numbers, on the same address with the addition of a category.
Example:
from site.ru/1234/kakoi-to-url to site.ru/faq/1234/kakoi-to-url

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
dodo512, 2019-08-10
@Pautinaweb

RedirectMatch 301 ^/(\d+/.+) /faq/$1
Or

RewriteEngine on
RewriteRule ^(\d+/.+) /faq/$1 [R=301,L]

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question