|
You can easily resolve this by setting up an .htaccess Redirect if your website is hosted on an Apache Server.
Open Notepad or a similar html editor.
Type this code:
Redirect 301 /oldpage.html http://www.pinkpoodles.com/newpage.html
Please note there is a space between 301 and the forward slash as well as a space between html and http.
(301 space / oldpage.html space http://)
Save
the file as .htaccess. Notepad will automatically add a .txt extension,
so be sure to rename the file as .htaccess. Upload via FTP to the
appropriate directory and a permanent redirect is set.
|