vote up 0 vote down star

Hello, I am trying to pass a actual url as a varible using mod_rewrite on apache

I have a page externalLink.php that can be passed a url in oder to do some magic i.e.

/externalLink.php?url=http://example.com

I wnat this to be a nice url like /external/http://example.com

I have added a rewrite rule to my htaccess that I hope might work, but as a suspected it does not.

RewriteRule ^external/([^/.]+)/*$ /externalLink.php?url=$1 [L]

Does anyone know if this is possible ?

Thanks in advance

.k


40% accept rate

migrated to serverfault.com by Jeff Atwood Sep 8 at 3:21

Browse other questions tagged or ask your own question.