url rewriting asp .htaccess file
Posted
by GigaPr
on Stack Overflow
See other posts from Stack Overflow
or by GigaPr
Published on 2010-04-01T09:07:28Z
Indexed on
2010/04/01
9:13 UTC
Read the original article
Hit count: 346
url-rewriting
I i just moved my website (asp.net) to the live environment.
i realized they are running IIS 6 so all my nice and clean url rewriting doesn t work anymore.
i was trying to implemente url rewriting using the .htaccess file
i want to rewrite
www.amicobio.co.uk/Menu.aspx
as www.amicobio.co.uk/Food-Menu
so in the .htaccess i set
CaseInsensitive On Options +FollowSymlinks RewriteEngine On RewriteRule ^Food-Menu$ Menu.aspx
but it doesn t work it says
The requested URL /a/m/amicobio.co.uk/public/Menu.aspx was not found on this server.
obviously yhe path is wrong but what is /a/m/ ?
and how do i fix it?
all the files in amicobio.co.uk/public/
thanks
© Stack Overflow or respective owner