@dana
To redirect a page using .htaccess, you can use the following code:
1
|
Redirect /oldpage.html http://www.example.com/newpage.html |
This code will redirect any requests for "oldpage.html" to "newpage.html".
1
|
Redirect permanent /oldpage.html http://www.newdomain.com/newpage.html |
This code will redirect any requests for "oldpage.html" to "http://www.newdomain.com/newpage.html" with a permanent redirect (301).
Make sure to save the .htaccess file after adding the redirects and test to ensure that they are working correctly.