473,503 Members | 1,657 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Vanity URLs

Hello,

I am trying to create vanity URLs (I think that's what they are called) that
link directly to an item's listing
page on my site. Currently, the urls are set up something like the
following:

http://www.mydomain.com/productinfo.asp?prodID=00000

I am trying to configure them to be something like this:

http://www.mydomain.com/products/00000

The reason why I want to do this is that we print a paper directory and I
would like to list the links in there.
I have tried creating a folder called products, and configuring it to
redirect to a redirect file using the following:
http://www.mydomain.com/redirect.asp?prodID=$S

The redirect file contained something to the effect of the following code:
<%
Response.Redirect("productinfo.asp?prodID=" &_
Replace(Request.Querystring("prodID"),"/",""))
%>

This worked great on my local testing server. The problem is that my hosting
provider would not configure the folder for the redirect. That said, is
there any way to do this another way? I think the one possible is to
configure your 404 Error page to pull the url and forward to the listing
page based on some item in that url. Has anyone done this? I
appreciate the help.

Thanks,

Chris

Jul 19 '05 #1
10 2011
http://www.asp101.com/articles/wayne/extendingnames/
"Chris Guimbellot" <cg*********@FORGETSPAM.hifranchise.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Hello,

I am trying to create vanity URLs (I think that's what they are called) that link directly to an item's listing
page on my site. Currently, the urls are set up something like the
following:

http://www.mydomain.com/productinfo.asp?prodID=00000

I am trying to configure them to be something like this:

http://www.mydomain.com/products/00000

The reason why I want to do this is that we print a paper directory and I
would like to list the links in there.
I have tried creating a folder called products, and configuring it to
redirect to a redirect file using the following:
http://www.mydomain.com/redirect.asp?prodID=$S

The redirect file contained something to the effect of the following code:
<%
Response.Redirect("productinfo.asp?prodID=" &_
Replace(Request.Querystring("prodID"),"/",""))
%>

This worked great on my local testing server. The problem is that my hosting provider would not configure the folder for the redirect. That said, is
there any way to do this another way? I think the one possible is to
configure your 404 Error page to pull the url and forward to the listing
page based on some item in that url. Has anyone done this? I
appreciate the help.

Thanks,

Chris

Jul 19 '05 #2
www.aspfaq.com has some links on a custom 404 page.
--
Curt Christianson
Owner/Lead Developer, DF-Software
www.Darkfalz.com
"Chris Guimbellot" <cg*********@FORGETSPAM.hifranchise.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Hello,

I am trying to create vanity URLs (I think that's what they are called) that link directly to an item's listing
page on my site. Currently, the urls are set up something like the
following:

http://www.mydomain.com/productinfo.asp?prodID=00000

I am trying to configure them to be something like this:

http://www.mydomain.com/products/00000

The reason why I want to do this is that we print a paper directory and I
would like to list the links in there.
I have tried creating a folder called products, and configuring it to
redirect to a redirect file using the following:
http://www.mydomain.com/redirect.asp?prodID=$S

The redirect file contained something to the effect of the following code:
<%
Response.Redirect("productinfo.asp?prodID=" &_
Replace(Request.Querystring("prodID"),"/",""))
%>

This worked great on my local testing server. The problem is that my hosting provider would not configure the folder for the redirect. That said, is
there any way to do this another way? I think the one possible is to
configure your 404 Error page to pull the url and forward to the listing
page based on some item in that url. Has anyone done this? I
appreciate the help.

Thanks,

Chris

Jul 19 '05 #3
Alex,

Thanks for the response. I have a question. I have created the correct
404.asp page and it is successfully performing the server.transfer, but when
it gets to the product page, that page is not receiving the record. Do I
have to build code on that page to check to see if there is a Session
variable. The article never mentions it. If not, is it possible that it is
not passing the session variable. The text I get on the productinfo.asp page
is "Either BOF or EOF is True, or the current record has been deleted.
Requested operation requires a current record." which usually means no
variable was passed to it. Not sure what's going on here. I appreciate the
help,

Chris

"Alex Goodey" <ag*****@hsfinancial.co.uk> wrote in message
news:bu************@ID-221525.news.uni-berlin.de...
http://www.asp101.com/articles/wayne/extendingnames/
"Chris Guimbellot" <cg*********@FORGETSPAM.hifranchise.com> wrote in message news:%2****************@tk2msftngp13.phx.gbl...
Hello,

I am trying to create vanity URLs (I think that's what they are called)

that
link directly to an item's listing
page on my site. Currently, the urls are set up something like the
following:

http://www.mydomain.com/productinfo.asp?prodID=00000

I am trying to configure them to be something like this:

http://www.mydomain.com/products/00000

The reason why I want to do this is that we print a paper directory and I would like to list the links in there.
I have tried creating a folder called products, and configuring it to
redirect to a redirect file using the following:
http://www.mydomain.com/redirect.asp?prodID=$S

The redirect file contained something to the effect of the following code: <%
Response.Redirect("productinfo.asp?prodID=" &_
Replace(Request.Querystring("prodID"),"/",""))
%>

This worked great on my local testing server. The problem is that my

hosting
provider would not configure the folder for the redirect. That said, is
there any way to do this another way? I think the one possible is to
configure your 404 Error page to pull the url and forward to the listing
page based on some item in that url. Has anyone done this? I
appreciate the help.

Thanks,

Chris


Jul 19 '05 #4
Chris,

When you used to call the product page using productinfo.asp?prodID=0000 you
used Request.QueryString("prodID") to find which product was being called.

As server.transfer can't pass parameters in the querystring then the product
id gets stored in a session variable, so your products page must then read
what is in the session variable.

Response.Write Session("prodID") will write out what ever is held in the
session variable called prodID, use this to make sure it is returning what
you expect. If it is, you can then use Session("prodID") in your SQL
statement.
"Chris Guimbellot" <cg*********@FORGETSPAM.hifranchise.com> wrote in message
news:ex**************@TK2MSFTNGP11.phx.gbl...
Alex,

Thanks for the response. I have a question. I have created the correct
404.asp page and it is successfully performing the server.transfer, but when it gets to the product page, that page is not receiving the record. Do I
have to build code on that page to check to see if there is a Session
variable. The article never mentions it. If not, is it possible that it is
not passing the session variable. The text I get on the productinfo.asp page is "Either BOF or EOF is True, or the current record has been deleted.
Requested operation requires a current record." which usually means no
variable was passed to it. Not sure what's going on here. I appreciate the
help,

Chris

"Alex Goodey" <ag*****@hsfinancial.co.uk> wrote in message
news:bu************@ID-221525.news.uni-berlin.de...
http://www.asp101.com/articles/wayne/extendingnames/
"Chris Guimbellot" <cg*********@FORGETSPAM.hifranchise.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Hello,

I am trying to create vanity URLs (I think that's what they are called)
that
link directly to an item's listing
page on my site. Currently, the urls are set up something like the
following:

http://www.mydomain.com/productinfo.asp?prodID=00000

I am trying to configure them to be something like this:

http://www.mydomain.com/products/00000

The reason why I want to do this is that we print a paper directory
and I would like to list the links in there.
I have tried creating a folder called products, and configuring it to
redirect to a redirect file using the following:
http://www.mydomain.com/redirect.asp?prodID=$S

The redirect file contained something to the effect of the following code: <%
Response.Redirect("productinfo.asp?prodID=" &_
Replace(Request.Querystring("prodID"),"/",""))
%>

This worked great on my local testing server. The problem is that my

hosting
provider would not configure the folder for the redirect. That said,

is there any way to do this another way? I think the one possible is to
configure your 404 Error page to pull the url and forward to the listing page based on some item in that url. Has anyone done this? I
appreciate the help.

Thanks,

Chris



Jul 19 '05 #5
Alex,

Okay now, I got it working. There is only one problem. After the page is
loaded, the images will not load because they are referring to the wrong
folder. They are looking for "mydomain.com/products/images/image.jpg"
instead of "mydomain.com/images/image.jpg" like it should. The article
mentions that you can add as many nonexistent folders as necessary(e.g.
products/brand/model or products/brand/year/model). It looks like every time
I change the number of nonexistent folders, the image location will change.
Do I have to hard-code the images location (e.g
mydomain.com/images/image.jpg)? Currently, its "images/image.jpg". What do
you think. Thanks again.

Chris

"Alex Goodey" <ag*****@hsfinancial.co.uk> wrote in message
news:bu************@ID-221525.news.uni-berlin.de...
Chris,

When you used to call the product page using productinfo.asp?prodID=0000 you used Request.QueryString("prodID") to find which product was being called.

As server.transfer can't pass parameters in the querystring then the product id gets stored in a session variable, so your products page must then read
what is in the session variable.

Response.Write Session("prodID") will write out what ever is held in the
session variable called prodID, use this to make sure it is returning what
you expect. If it is, you can then use Session("prodID") in your SQL
statement.
"Chris Guimbellot" <cg*********@FORGETSPAM.hifranchise.com> wrote in message news:ex**************@TK2MSFTNGP11.phx.gbl...
Alex,

Thanks for the response. I have a question. I have created the correct
404.asp page and it is successfully performing the server.transfer, but

when
it gets to the product page, that page is not receiving the record. Do I
have to build code on that page to check to see if there is a Session
variable. The article never mentions it. If not, is it possible that it is
not passing the session variable. The text I get on the productinfo.asp

page
is "Either BOF or EOF is True, or the current record has been deleted.
Requested operation requires a current record." which usually means no
variable was passed to it. Not sure what's going on here. I appreciate the help,

Chris

"Alex Goodey" <ag*****@hsfinancial.co.uk> wrote in message
news:bu************@ID-221525.news.uni-berlin.de...
http://www.asp101.com/articles/wayne/extendingnames/
"Chris Guimbellot" <cg*********@FORGETSPAM.hifranchise.com> wrote in

message
news:%2****************@tk2msftngp13.phx.gbl...
> Hello,
>
> I am trying to create vanity URLs (I think that's what they are

called) that
> link directly to an item's listing
> page on my site. Currently, the urls are set up something like the
> following:
>
> http://www.mydomain.com/productinfo.asp?prodID=00000
>
> I am trying to configure them to be something like this:
>
> http://www.mydomain.com/products/00000
>
> The reason why I want to do this is that we print a paper directory and
I
> would like to list the links in there.
> I have tried creating a folder called products, and configuring it to > redirect to a redirect file using the following:
> http://www.mydomain.com/redirect.asp?prodID=$S
>
> The redirect file contained something to the effect of the following

code:
> <%
> Response.Redirect("productinfo.asp?prodID=" &_
> Replace(Request.Querystring("prodID"),"/",""))
> %>
>
> This worked great on my local testing server. The problem is that my
hosting
> provider would not configure the folder for the redirect. That said,

is > there any way to do this another way? I think the one possible is to
> configure your 404 Error page to pull the url and forward to the listing > page based on some item in that url. Has anyone done this? I
> appreciate the help.
>
> Thanks,
>
> Chris
>
>
>



Jul 19 '05 #6

try putting /images/image.jpg

Brynn
On Tue, 20 Jan 2004 12:51:06 -0500, "Chris Guimbellot"
<cg*********@FORGETSPAM.hifranchise.com> wrote:
Alex,

Okay now, I got it working. There is only one problem. After the page is
loaded, the images will not load because they are referring to the wrong
folder. They are looking for "mydomain.com/products/images/image.jpg"
instead of "mydomain.com/images/image.jpg" like it should. The article
mentions that you can add as many nonexistent folders as necessary(e.g.
products/brand/model or products/brand/year/model). It looks like every time
I change the number of nonexistent folders, the image location will change.
Do I have to hard-code the images location (e.g
mydomain.com/images/image.jpg)? Currently, its "images/image.jpg". What do
you think. Thanks again.

Chris

"Alex Goodey" <ag*****@hsfinancial.co.uk> wrote in message
news:bu************@ID-221525.news.uni-berlin.de...
Chris,

When you used to call the product page using productinfo.asp?prodID=0000

you
used Request.QueryString("prodID") to find which product was being called.

As server.transfer can't pass parameters in the querystring then the

product
id gets stored in a session variable, so your products page must then read
what is in the session variable.

Response.Write Session("prodID") will write out what ever is held in the
session variable called prodID, use this to make sure it is returning what
you expect. If it is, you can then use Session("prodID") in your SQL
statement.
"Chris Guimbellot" <cg*********@FORGETSPAM.hifranchise.com> wrote in

message
news:ex**************@TK2MSFTNGP11.phx.gbl...
> Alex,
>
> Thanks for the response. I have a question. I have created the correct
> 404.asp page and it is successfully performing the server.transfer, but

when
> it gets to the product page, that page is not receiving the record. Do I
> have to build code on that page to check to see if there is a Session
> variable. The article never mentions it. If not, is it possible that itis > not passing the session variable. The text I get on the productinfo.asp

page
> is "Either BOF or EOF is True, or the current record has been deleted.
> Requested operation requires a current record." which usually means no
> variable was passed to it. Not sure what's going on here. I appreciatethe > help,
>
> Chris
>
> "Alex Goodey" <ag*****@hsfinancial.co.uk> wrote in message
> news:bu************@ID-221525.news.uni-berlin.de...
> > http://www.asp101.com/articles/wayne/extendingnames/
> >
> >
> > "Chris Guimbellot" <cg*********@FORGETSPAM.hifranchise.com> wrote in
> message
> > news:%2****************@tk2msftngp13.phx.gbl...
> > > Hello,
> > >
> > > I am trying to create vanity URLs (I think that's what they are

called)
> > that
> > > link directly to an item's listing
> > > page on my site. Currently, the urls are set up something like the
> > > following:
> > >
> > > http://www.mydomain.com/productinfo.asp?prodID=00000
> > >
> > > I am trying to configure them to be something like this:
> > >
> > > http://www.mydomain.com/products/00000
> > >
> > > The reason why I want to do this is that we print a paper directory

and
> I
> > > would like to list the links in there.
> > > I have tried creating a folder called products, and configuring itto > > > redirect to a redirect file using the following:
> > > http://www.mydomain.com/redirect.asp?prodID=$S
> > >
> > > The redirect file contained something to the effect of the following
> code:
> > > <%
> > > Response.Redirect("productinfo.asp?prodID=" &_
> > > Replace(Request.Querystring("prodID"),"/",""))
> > > %>
> > >
> > > This worked great on my local testing server. The problem is that my
> > hosting
> > > provider would not configure the folder for the redirect. That said,

is
> > > there any way to do this another way? I think the one possible is to
> > > configure your 404 Error page to pull the url and forward to the

listing
> > > page based on some item in that url. Has anyone done this? I
> > > appreciate the help.
> > >
> > > Thanks,
> > >
> > > Chris
> > >
> > >
> > >
> >
> >
>
>




Brynn
www.coolpier.com

I participate in the group to help give examples of code.
I do not guarantee the effects of any code posted.
Test all code before use!
Jul 19 '05 #7
"Chris Guimbellot" <cg*********@FORGETSPAM.hifranchise.com> wrote in message
news:OC**************@TK2MSFTNGP11.phx.gbl...
Alex,

Okay now, I got it working. There is only one problem. After the page is
loaded, the images will not load because they are referring to the wrong
folder. They are looking for "mydomain.com/products/images/image.jpg"
instead of "mydomain.com/images/image.jpg" like it should. The article
mentions that you can add as many nonexistent folders as necessary(e.g.
products/brand/model or products/brand/year/model). It looks like every time I change the number of nonexistent folders, the image location will change. Do I have to hard-code the images location (e.g
mydomain.com/images/image.jpg)? Currently, its "images/image.jpg". What do
you think. Thanks again.


Just change it to "/images/image.jpg".

--
Tom Kaminski IIS MVP
http://www.iistoolshed.com/ - tools, scripts, and utilities for running IIS
http://mvp.support.microsoft.com/
http://www.microsoft.com/windowsserv...y/centers/iis/

Jul 19 '05 #8
Chris Guimbellot wrote on 20 jan 2004 in
microsoft.public.inetserver.asp.general:
Do I have to hard-code the images location (e.g
mydomain.com/images/image.jpg)? Currently, its "images/image.jpg".
What do you think. Thanks again.


<base href="...">

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 19 '05 #9
That worked. Thanks,

Chris

"Brynn" <z@z.com> wrote in message
news:40**************@news.comcast.giganews.com...

try putting /images/image.jpg

Brynn
On Tue, 20 Jan 2004 12:51:06 -0500, "Chris Guimbellot"
<cg*********@FORGETSPAM.hifranchise.com> wrote:
Alex,

Okay now, I got it working. There is only one problem. After the page is
loaded, the images will not load because they are referring to the wrong
folder. They are looking for "mydomain.com/products/images/image.jpg"
instead of "mydomain.com/images/image.jpg" like it should. The article
mentions that you can add as many nonexistent folders as necessary(e.g.
products/brand/model or products/brand/year/model). It looks like every timeI change the number of nonexistent folders, the image location will change.Do I have to hard-code the images location (e.g
mydomain.com/images/image.jpg)? Currently, its "images/image.jpg". What doyou think. Thanks again.

Chris

"Alex Goodey" <ag*****@hsfinancial.co.uk> wrote in message
news:bu************@ID-221525.news.uni-berlin.de...
Chris,

When you used to call the product page using productinfo.asp?prodID=0000
you
used Request.QueryString("prodID") to find which product was being
called.
As server.transfer can't pass parameters in the querystring then the

product
id gets stored in a session variable, so your products page must then read what is in the session variable.

Response.Write Session("prodID") will write out what ever is held in the session variable called prodID, use this to make sure it is returning what you expect. If it is, you can then use Session("prodID") in your SQL
statement.
"Chris Guimbellot" <cg*********@FORGETSPAM.hifranchise.com> wrote in

message
news:ex**************@TK2MSFTNGP11.phx.gbl...
> Alex,
>
> Thanks for the response. I have a question. I have created the correct > 404.asp page and it is successfully performing the server.transfer, but when
> it gets to the product page, that page is not receiving the record. Do I > have to build code on that page to check to see if there is a Session
> variable. The article never mentions it. If not, is it possible that itis
> not passing the session variable. The text I get on the
productinfo.asp page
> is "Either BOF or EOF is True, or the current record has been deleted. > Requested operation requires a current record." which usually means no > variable was passed to it. Not sure what's going on here. I appreciatethe
> help,
>
> Chris
>
> "Alex Goodey" <ag*****@hsfinancial.co.uk> wrote in message
> news:bu************@ID-221525.news.uni-berlin.de...
> > http://www.asp101.com/articles/wayne/extendingnames/
> >
> >
> > "Chris Guimbellot" <cg*********@FORGETSPAM.hifranchise.com> wrote
in > message
> > news:%2****************@tk2msftngp13.phx.gbl...
> > > Hello,
> > >
> > > I am trying to create vanity URLs (I think that's what they are
called)
> > that
> > > link directly to an item's listing
> > > page on my site. Currently, the urls are set up something like the > > > following:
> > >
> > > http://www.mydomain.com/productinfo.asp?prodID=00000
> > >
> > > I am trying to configure them to be something like this:
> > >
> > > http://www.mydomain.com/products/00000
> > >
> > > The reason why I want to do this is that we print a paper directory and
> I
> > > would like to list the links in there.
> > > I have tried creating a folder called products, and configuring itto
> > > redirect to a redirect file using the following:
> > > http://www.mydomain.com/redirect.asp?prodID=$S
> > >
> > > The redirect file contained something to the effect of the

following > code:
> > > <%
> > > Response.Redirect("productinfo.asp?prodID=" &_
> > > Replace(Request.Querystring("prodID"),"/",""))
> > > %>
> > >
> > > This worked great on my local testing server. The problem is that my > > hosting
> > > provider would not configure the folder for the redirect. That said, is
> > > there any way to do this another way? I think the one possible is to > > > configure your 404 Error page to pull the url and forward to the
listing
> > > page based on some item in that url. Has anyone done this? I
> > > appreciate the help.
> > >
> > > Thanks,
> > >
> > > Chris
> > >
> > >
> > >
> >
> >
>
>



Brynn
www.coolpier.com

I participate in the group to help give examples of code.
I do not guarantee the effects of any code posted.
Test all code before use!

Jul 19 '05 #10

no problem ... I always do paths from the root like that :) ... I
think it is good practice to do so.

Brynn

On Tue, 20 Jan 2004 17:40:43 -0500, "Chris Guimbellot"
<cg*********@FORGETSPAM.hifranchise.com> wrote:
That worked. Thanks,

Chris

"Brynn" <z@z.com> wrote in message
news:40**************@news.comcast.giganews.com.. .

try putting /images/image.jpg

Brynn
On Tue, 20 Jan 2004 12:51:06 -0500, "Chris Guimbellot"
<cg*********@FORGETSPAM.hifranchise.com> wrote:
>Alex,
>
>Okay now, I got it working. There is only one problem. After the page is
>loaded, the images will not load because they are referring to the wrong
>folder. They are looking for "mydomain.com/products/images/image.jpg"
>instead of "mydomain.com/images/image.jpg" like it should. The article
>mentions that you can add as many nonexistent folders as necessary(e.g.
>products/brand/model or products/brand/year/model). It looks like everytime >I change the number of nonexistent folders, the image location willchange. >Do I have to hard-code the images location (e.g
>mydomain.com/images/image.jpg)? Currently, its "images/image.jpg". Whatdo >you think. Thanks again.
>
>Chris
>
>"Alex Goodey" <ag*****@hsfinancial.co.uk> wrote in message
>news:bu************@ID-221525.news.uni-berlin.de...
>> Chris,
>>
>> When you used to call the product page usingproductinfo.asp?prodID=0000 >you
>> used Request.QueryString("prodID") to find which product was beingcalled. >>
>> As server.transfer can't pass parameters in the querystring then the
>product
>> id gets stored in a session variable, so your products page must thenread >> what is in the session variable.
>>
>> Response.Write Session("prodID") will write out what ever is held inthe >> session variable called prodID, use this to make sure it is returningwhat >> you expect. If it is, you can then use Session("prodID") in your SQL
>> statement.
>>
>>
>> "Chris Guimbellot" <cg*********@FORGETSPAM.hifranchise.com> wrote in
>message
>> news:ex**************@TK2MSFTNGP11.phx.gbl...
>> > Alex,
>> >
>> > Thanks for the response. I have a question. I have created thecorrect >> > 404.asp page and it is successfully performing the server.transfer,but >> when
>> > it gets to the product page, that page is not receiving the record.Do I >> > have to build code on that page to check to see if there is a Session
>> > variable. The article never mentions it. If not, is it possible thatit >is
>> > not passing the session variable. The text I get on theproductinfo.asp >> page
>> > is "Either BOF or EOF is True, or the current record has beendeleted. >> > Requested operation requires a current record." which usually meansno >> > variable was passed to it. Not sure what's going on here. Iappreciate >the
>> > help,
>> >
>> > Chris
>> >
>> > "Alex Goodey" <ag*****@hsfinancial.co.uk> wrote in message
>> > news:bu************@ID-221525.news.uni-berlin.de...
>> > > http://www.asp101.com/articles/wayne/extendingnames/
>> > >
>> > >
>> > > "Chris Guimbellot" <cg*********@FORGETSPAM.hifranchise.com> wrotein >> > message
>> > > news:%2****************@tk2msftngp13.phx.gbl...
>> > > > Hello,
>> > > >
>> > > > I am trying to create vanity URLs (I think that's what they are
>> called)
>> > > that
>> > > > link directly to an item's listing
>> > > > page on my site. Currently, the urls are set up something likethe >> > > > following:
>> > > >
>> > > > http://www.mydomain.com/productinfo.asp?prodID=00000
>> > > >
>> > > > I am trying to configure them to be something like this:
>> > > >
>> > > > http://www.mydomain.com/products/00000
>> > > >
>> > > > The reason why I want to do this is that we print a paperdirectory >> and
>> > I
>> > > > would like to list the links in there.
>> > > > I have tried creating a folder called products, and configuringit >to
>> > > > redirect to a redirect file using the following:
>> > > > http://www.mydomain.com/redirect.asp?prodID=$S
>> > > >
>> > > > The redirect file contained something to the effect of thefollowing >> > code:
>> > > > <%
>> > > > Response.Redirect("productinfo.asp?prodID=" &_
>> > > > Replace(Request.Querystring("prodID"),"/",""))
>> > > > %>
>> > > >
>> > > > This worked great on my local testing server. The problem is thatmy >> > > hosting
>> > > > provider would not configure the folder for the redirect. Thatsaid, >> is
>> > > > there any way to do this another way? I think the one possible isto >> > > > configure your 404 Error page to pull the url and forward to the
>> listing
>> > > > page based on some item in that url. Has anyone done this? I
>> > > > appreciate the help.
>> > > >
>> > > > Thanks,
>> > > >
>> > > > Chris
>> > > >
>> > > >
>> > > >
>> > >
>> > >
>> >
>> >
>>
>>
>
>


Brynn
www.coolpier.com

I participate in the group to help give examples of code.
I do not guarantee the effects of any code posted.
Test all code before use!



Brynn
www.coolpier.com

I participate in the group to help give examples of code.
I do not guarantee the effects of any code posted.
Test all code before use!
Jul 19 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
3401
by: phpkid | last post by:
Howdy I've been given conflicting answers about search engines picking up urls like: http://mysite.com/index.php?var1=1&var2=2&var3=3 Do search engines pick up these urls? I've been considering...
26
12377
by: Howard Brazee | last post by:
I would like to click on a URL of a html document that will open several URLs at once for me. Does someone have an example of a html document that will do this?
1
1806
by: DM | last post by:
I'm working on a site with more than 1700 HTML files. We'll be moving files around on this site a lot because we're reorganizing it. I'm thinking of writing a script that will convert all URLs in...
2
2604
by: Showjumper | last post by:
How would i go about making vanity urls such that its really the same url for everyone but that it just appears different based on who logs in.
1
1362
by: Stimp | last post by:
I know how to create vanity urls for users when they append a .aspx to their name, but is it possible to pick up their name alone (without affixing .aspx?) e.g. in the global.asax file I can...
2
2044
by: Eric Lemmon | last post by:
Greetings, I wrote code to handle vanity URLs, so--for example--the URL http://localhost/myApp/bsmith.aspx is internally translated to http://localhost/myApp/Support/UserPage.aspx?user=bsmith. ...
3
1805
by: Leon | last post by:
How to personalized different parts of my website using vanity sub-domain name url. example: my domain name is www.mydomain.com. I would like the vanity url to be myname.mydomain.com, and...
10
4892
by: jflash | last post by:
Hello all, I feel dumb having to ask this question in the first place, but I just can not figure it out. I am wanting to set my site up using dynamic urls (I'm assuming that's what they're...
9
5088
by: Salve =?iso-8859-1?Q?H=E5kedal?= | last post by:
What is the best regular expression for finding urls in plain text files? (By urls I mean http://www.something.com, but also www.something.com, or salve@somewhere.com) Salve
3
3853
by: WebCM | last post by:
How to apply nice URL-s into CMS? 1. Should we use nice urls for every page? 2. Do we need to put a FULL path into <a href="">? 3. What is faster and better? a) 10 rules in .htaccess...
0
7198
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7072
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7319
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6979
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5570
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4998
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
1498
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
730
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
373
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.