hey Im a little lost here. Ive tried a few times to append a login id
to the URL via Mod_rewrite
It works but it winds up in an endless loop where it keeps appending
the login id onto the Url thousands of times... and locking up!
Rewri*gine on
RewriteBase /login/inventory/
RewriteCond %{QUERY_STRING} !*login=*
RewriteCond %{REQUEST_METHOD} GET
RewriteRule ^(.*)/(.+)\.asp(.*)$
/login/inventory/$2.asp$3&login=%{REMOTE_USER} [R,P,L]
So i see in the logs i wind up getting
login=xxxx&login=xxxx&login=xxxx&login=xxxx
appended hundreds of times.
Any ideas on how to get this to work? Im stumped