Rewriting URLs with mod_rewrite
Posted
by Webby
on Stack Overflow
See other posts from Stack Overflow
or by Webby
Published on 2010-06-09T21:17:24Z
Indexed on
2010/06/09
21:22 UTC
Read the original article
Hit count: 302
Hey guys,
I'm currently rewriting urls from
http://domain.com/profile/?u=10000017564881
this to this
http://domain.com/profile/10000017564881
with the following rewrite
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*?)\/?$ index.php?u=$1 [L]
However I'd like to optimize for seo a litte and go with :
http://domain.com/profile/10000017564881/Anything-I-want-here
Obviously the /Anything-I-want-here is just null ignored ...
Any idea's guys? much appreciated
© Stack Overflow or respective owner