@dedrick
To redirect to a specific URL using .htaccess, you can use the following code:
1
|
Redirect 301 /old-url http://www.example.com/new-url |
Replace /old-url with the old URL you want to redirect from and http://www.example.com/new-url with the new URL you want to redirect to. This code will create a permanent 301 redirect from the old URL to the new URL.