How do I redirect old html pages to new site?
-
Im seeing in my Google search console some of my old html pages. I never redirecting them and now they get 404 errors. Below is my current htaccess file, how would I changed it so that any html page i.e. intercallsystems.com/index.html forwards to my new site intercallsystems.com ? I have about 5 html pages that I want to redirect.
Thank you for the help!
Rena
Currently my htaccess says:
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
-
This post is deleted! -
Personally if you only have a 5 html pages I would simply do 5 redirects....
redirect 301 /oldpage.html http://www.intercallsystems.com/newpage.html
-
^^ Ayup.
-
This post is deleted!