I do some freelance for a portal site with a lot of clients.
Like
http://www.myportal.com
All clients have .asp pages like this:
Example for clientX
http://www.myportal.com/member_info.asp?member=70
Now we would like to have that your clients can login to our site directly to their page
Like this
http://www.myportal.com/clientX
and than they get forwarded or redirected to
http://www.myportal.com/member_info.asp?member=70
How can I do this?
I made some folders in the root like clientX with an index.html.
containing the code:
<html>
<head><title>clientX</title>
<meta http-equiv="Refresh" content="1; URL=http://www.myportal.com/member_info.asp?member=70">
</head>
When I open the index from my HD it opens the
http://www.myportal.com/member_info.asp?member=70
without any problem
However when I upload the index to the server and type in my browser:
http://www.myportal.com/clientX
I get a 403, Forbidden
When i visit
http://www.myportal.com/clientX/index.html
everything works..
I tried on another server where it does work without the index.html
Also we have over 150 clients and it will be very messy to make all folders for them in the root..
Is there another way?
Someone mentioned me that
"on unix servers (which we have) you can just modify the .htaccess file and not even set up the folders. In asp, you could do it the way you did and then create a meta refresh page with that code"
I have no idea what a .htaccess file is..
Another thing it would be nice if the address in the browser stays pinned on
http://www.myportal.com/clientX
Is that possible? With a frameset at 100% or something?
I know many question, I hope that someone can help me, this feature would be very nice for us
Many Thanks






Bookmarks