On 7/12/07, Naveen Sharma <[EMAIL PROTECTED]> wrote:
I want the URL to be visible as
http://dev.home.en/hawaii-hotels but internally it should
use
http://dev.home.en/action?city=hawaii.
I have used this
RewriteEngine On
RewriteRule ^/([a-zA-Z]*)(-)(hotels)/
http://%{HTTP_HOST}/action?city=$1
This changes the URl to
http://dev.expedia.jp/action.do?city=hawaii
Please suggest as to how this URL can be preserve while internally hiting an
action.
Leave the http and hostname out of the RewriteRule:
RewriteRule ^/([a-zA-Z]*)(-)(hotels)/ /action?city=$1
Martijn.
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
" from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]