Alright, say you have (
And Home is a subfolder in your wwwroot.
Just add this to your .htaccess
Just change "YourDoamin.com" to your domain and "Home" to the subfolder. Reload yourdomain.com and boom, redirects.
I take no credits to this. Just a normal .htaccess tool.
You must be registered for see links
) and you want to to go to (
You must be registered for see links
)And Home is a subfolder in your wwwroot.
Just add this to your .htaccess
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www.)?YourDomain.com$
RewriteRule ^(/)?$ home [L]
I take no credits to this. Just a normal .htaccess tool.