I'm trying to follow the RewriteRule docs to make it so that:

 http://benchwarmersports.com/packages/super-bowl-xliv/1

can be entered into the web-browser, and it transforms into:

http://benchwarmersports.com/packages.php?title=super-bowl-xliv&eventid=1


The good news is that it does transform the url when I do this. The bad news is that it also attempts to transform all the links (including to JS files
and images).

Can someone tell me what I'd need to modify to avoid this problem with the
 RewriteRule?


My .htaccess file presently looks like this:


 Options +FollowSymlinks
 RewriteEngine On
 RewriteOptions MaxRedirects=10
 RewriteBase /

RewriteRule ^packages/([^/]+)/([^/]+)$ /packages.php?title= $1&eventid=$2 [NC]






--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to