RE: mod_rewrite and mod_jk help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> Now want when a user browse www.example.com/someusername/ 
> httpd will forward the request to 
> www.example.com/user/?user=someusername
> 
> And when browse a user browse 
> www.example.com/someusername/login/ httpd will forward the 
> request to www.example.com/user/login/?user=someusername
> 
> So just 'pull out' the 'someusername' and add 
> ?user=someusername at the end. Is this doable?

By "forward the request", I assume you mean "respond as if the url were X",
as opposed to "redirect the request to X via HTTP response code 301 or 302."
If so, try this:

RewriteRule ^/(.*?)/(.*)/$ /$2/?user=$1 [L]

Rewrite rules are notoriously difficult to debug.  Turning on rewrite
logging and then trying truncated versions or simplified versions of the
rule against various requests might help.  Good luck.


---------------------------------------------------------------------
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: users-unsubscribe@xxxxxxxxxxxxxxxx
   "   from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx
For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx



[Index of Archives]     [Open SSH Users]     [Linux ACPI]     [Linux Kernel]     [Linux Laptop]     [Kernel Newbies]     [Security]     [Netfilter]     [Bugtraq]     [Squid]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Samba]     [Video 4 Linux]     [Device Mapper]

  Powered by Linux