Forum Moderators: open
Having never coded in asp (all of my sites are hand coded html) I am not really sure what I am doing, but I hope you can answer my question.
Here goes:
I have just taken over the task of updating the website of a record shop as the person who designed it hadn't a clue about SEO, and so the site has very little traffic. What I would like to do is to change the index page from being an .asp page (called default.asp) to being a html page which you click "ENTER" and it takes you to the page that is the index at present. How do I do this? Can I just make an index.html page and put the "ENTER" link as default.asp? or is it more complex than this?
Any help is appreciated.
So try creating your new home page and name it default.htm
Go to the root url with your browser (without specifying a page name) and see what page IIS serves you, your new .htm page or the old .asp page
If the IIS server is set to serve default.asp first, then you should rename the existing default.asp to home.asp, for example. Then name your new index page default.asp
If there's no asp code, there's no load on the server - and most spiders don't treat simple asp pages without url params any differently than .htm or .html pages.
Hope this helps!
JD
If you don't have IIS access or, like me, think IIS is some sort of cruise ship, then you can
1. save a copy of default.asp as new-page.asp
2. redirect default.asp to any new htm page you create using a redirect tag in the header - say "index.htm"
I'd use <META HTTP-EQUIV="Refresh" CONTENT="0;URL=index.htm">
3. Have a link on "index.htm" saying "click here" and on clicking it takes one to new-page.asp.
So user goes to yoursite.com/, and he hits the default.asp page which is a blank page that redirects him to index.htm. And he clicks on the link in index.htm to get to new-page.asp (which is a copy of the old default.asp).
That's my low tech solution. But I may have understood the question incorrectly in which case forgive me as I'm not a webmaster (or a webmistress. I'm kinda lika wannabe).