Quote:
Originally Posted by KickAssJesse
RewriteRule /(.*)/ index.php?id=$1
|
Quote:
Originally Posted by V_RocKs
RewriteRule ^([A-Za-z0-9-]+)/$ index.php?id=$1 [L,NC]
|
You can do it by just adjusting the pattern to "everything except for /"
Like:
Code:
RewriteRule ^/([^/]+)/?$ /index.php?id=$1 [L,NC]