@daisha
To redirect a URL using .htaccess, you can use the following code:
1
|
Redirect 301 /old-url/ http://www.example.com/new-url/ |
This code will redirect any requests for the old URL to the new URL with a permanent (301) redirect.
Note: Make sure to replace "/old-url/" and "http://www.example.com/new-url/" with your actual URLs.