cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
504
Views
9
Helpful
1
Replies

URL Rewriting by the CSS

haithamnofal
Level 3
Level 3

Hi There,

I have a requirement where I want my CSS to rewrite the complete URL when browsing instead of having my web server doing so; the current situation is as follows:

Users browse through the CSS to the web servers (http://www.example.com), and the web servers append the full path to the URL: (http://www.example.com/test/home.htm).

My question is how can I make my CSS do the URL rewriting and the appending to the full path by adding (/test/home.htm) instead of having the web servers doing so?

Any input is highly appreciated. Thanks!

Regards,

Haitham

1 Reply 1

skumar1969
Level 1
Level 1

Haitham,

There is more than one way to do this as per this link below, someone has already posted sometime ago on this forum.

http://www.cisco.com/en/US/products/hw/contnetw/ps789/products_configuration_example09186a00801de8d6.shtml

owner example

content default-redirect

port 80

protocol tcp

vip address 192.168.1.1

url "www.example.com/*"

redirect "www.example.com/test/home.htm"

active

thanks