|
Home > Archive > WebSphere Commerce suite > July 2005 > how to configure what's showing in the webbrowser address field?
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
how to configure what's showing in the webbrowser address field?
|
|
|
| Hi!
When I have published my store at say "http://www.mystore.com", is there
some way that I can spare the shoppers from seeing the complete "searchpath"
in their webbrowser's address field? That is, I don't want the shoppers to
see e.g. http://www.mystore.com/webapp/wcs/s...t/LogonForm...." etc
in their webbrowser address field. Instead, I want only
"http://www.mystore.com" to keep showing at all time the shopper is browsing
the site. I've seen this done but I haven't found out how to configure it.
If anyone knows, please let me know!
Thanks! / Ville
| |
|
| One way is to create an html page containing a frameset. For example:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Your Online Store</title>
</head>
<frameset>
<frame src="https://yoururl.com/webapp/wcs/stores/servlet/LogonForm?catalogId=10053&storeId=10001&langId=-1" />
</frameset>
<noframes></noframes>
</html>
Direct your user's to this html page when they access the site and they will not see the full url path while they browse the store.
| |
|
| Sorry, that'll teach me to post without previewing first.
Create an HTML page, which should contain one frameset with one frame. The src for the frame is the home page of your commerce store. Then get users to access this html page rather than the store's home page.
|
|
|
|
|