skip to Main Content

Apache – 301 redirect to modified url from .htaccess

How to make redirect 301 from ulr: https://domen.com/some-word/* to https://domen.com/products/some-word/* using .htaccess make 301 redirect from one url to another RewriteEngine on # RewriteCond %{ENV:HTTPS} !on # RewriteRule ^.*$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] how i can to resolve this problem?

VIEW QUESTION
Back To Top
Search