tags:

views:

48

answers:

3

Can someone helpe me with this mod_write issue? I want to rewrite this:

www.mydomain.org/site/767-title.php

to

www.mydomain.org/index.php?e=767

Thanks!!

+2  A: 
RewriteRule ^/site/(\d+)-title.php /index.php?e=$1
Maxwell Troy Milton King
+1  A: 
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^/site/([^/\.]+)-title.php /index.php?e=$1 [L]
</IfModule>
GeekTantra
A: 

Ok, thanks for this, and what if the title part is variable?

Marcel