Answer the question
In order to leave comments, you need to log in
How to make a redirect from the main page to the internal one?
Good afternoon
I can’t solve this simplest task.
It is necessary that there be a redirect from esk.ru to esk.ru/stati/ I
write the following code in .htaccess: Redirect http://e-s-k.ru/ http://e-s-k.ru/stati/
but it just loops the redirect and displays such a beard: esk.ru/stati/stati/stati /stati/stati/stati/stati...
Actually, the site is on WP, there is generally a Rewrite registered there, is it possible to drive something there?
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Answer the question
In order to leave comments, you need to log in
Add the following to the top of your homepage template:
<?php
wp_redirect( 'http://e-s-k.ru/stati/', $status );
exit;
?>
Redirect 301 http://e-s-k.ru/ http://e-s-k.ru/stati/
Redirect 301 / http://e-s-k.ru/stati/
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question