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!!
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!!
RewriteRule ^/site/(\d+)-title.php /index.php?e=$1
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^/site/([^/\.]+)-title.php /index.php?e=$1 [L]
</IfModule>