DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=42731>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=42731 ------- Additional Comments From [EMAIL PROTECTED] 2007-06-27 22:31 ------- (In reply to comment #3) > Can you post exact 4 lines of rewrite rule in 2 cases, one which didn't work > and > one which worked? Also please post the uri which you tried? I was confused by > your description which rewrite rule you changed. Sorry, I was a bit tired when I wrote the first post. 1st case: RewriteEngine On RewriteBase / RewriteRule ^Admin$ admin.php [L] RewriteRule (.*) index.php?file=$1 [QSA,L] URI: http://mydomain.tld/Admin Result: Redirect to http://mydomain.tld/Admin/?file=Admin (which makes absolutely no sense to me) 2nd case: RewriteEngine On RewriteBase / RewriteRule ^foo\.php$ admin.php [L] RewriteRule (.*) index.php?file=$1 [QSA,L] URI: http://mydomain.tld/foo.php Result: [L] was ignored (as far as I know it should prevent the following rules from being applied, shouldn't it?); output of index.php: "admin.php" 3rd case: RewriteEngine On RewriteBase / RewriteRule ^admin\.php$ admin.php [L] RewriteRule (.*) index.php?file=$1 [QSA,L] URI: http://mydomain.tld/admin.php Result: Worked as expected, I saw the output of admin.php (mydomain.tld stands for my .de-Domain) -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
