kickassamd Posted March 2, 2009 Share Posted March 2, 2009 I have installed isapi_rewrite from HeliconTech for IIS I currently have RewriteRule ^(.*?\.php)/([^/]*)/([^/]*)(/.+)? $1$4?$2=$3 [NC,LP,QSA] But this requires site.com/index.php/page/news to do index.php?page=news I am trying to get it to do site.com/page/news and send the results to site.com/index.php?page=news Basically no filename in the URL. Is there anyone good with rewrite rules that can help? Thanks! Quote Link to comment Share on other sites More sharing options...
phant0m Posted March 2, 2009 Share Posted March 2, 2009 What about this? RewriteRule ^([^/]+)/([^/]+)$ index.php?$1=$2 [QSA] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.