Answer the question
In order to leave comments, you need to log in
How to configure htaccess redirect to a specific page from all page addresses starting with certain characters?
Good day to all. Need advice.
There are several pages like:
www.site.ru/index.php/blog14/bububu
www.site.ru/index.php/b17/tik-tak/bububu
www.site.ru/index.php/lalala
Addresses of all similar pages unknown, but at the beginning of the address of each of them is index.php.
It is required to make a redirect to the main page of the site www.site.ru from all page addresses that have index.php at the beginning
Answer the question
In order to leave comments, you need to log in
RewriteCond %{REQUEST_URI} ^.index\.php.* #условие
RewriteRule ^index\.php/(.*)/(.*)$ http://%{HTTP_HOST}/$1? [R=301,L]
RewriteCond %{REQUEST_URI} ^.index\.php.* #условие
RewriteRule ^index\.php/(.*)$ http://%{HTTP_HOST}/$1? [R=301,L]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question