Forum Moderators: phranque
Currently, my site's homepage is index.htm. So when a person enters [example.com...] (my site), they get taken to index.htm as default.
I currently have a file that is located at [example.com...] I would like this page to be the new default page when a user types in [example.com...] I do not wish to move the file in the cms directory. I am wondering how I can make the redirect when a user enters my website address. I would like this redirect to be search engine friendly, and un-detectable (instant).
If anyone could help me out, I would appreciate it. Thanks in advance!
its fast, but not as "instant" as something in your .htaccess file.
err..someone else will have to help you there. or do a search on "redirect htaccess" and see what you find.
Thank you both! Will the Meta tag redirect effect my search engine ranking?
It will if you use it like did! ;-)
You can use a javascript redirect as well. A line of code on your page will call up the redirect script from another location. Again, it will affect your rankings if you use it like i did.
Ska
Add a line just like this.
Redirect 301 / [example.com...]
This will redirect the top level of your site to your new index page.
This is search engine friendly.
Good luck.
i.e. <META HTTP-EQUIV=Refresh CONTENT="5;URL=http://www.example.com/cmx/index.php">
Would that work?