Can someone helpe me with this mod_write issue? I want to rewrite this:
www.mydomain.org/site/767-ti开发者_开发百科tle.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>
精彩评论