mga_ka_php Posted November 17, 2009 Share Posted November 17, 2009 i have this url http://www.mydomain.com/dvds/search/page/2/?Keywords=holiday&Radius=0&Zip=&StartDate=2009-11-17&EndDate=2010-07-15 this is my rewrite rule RewriteRule ^dvds/search/page/([0-9+])/$ /index2.php i could fetch the values of keywords, radius, zip, startdate and enddate but i can't get the page number if i do this RewriteRule ^dvds/search/page/([0-9+])/$ /index2.php?page=$1 i could get the page number but i can't get the values of keywords, radius, zip, startdate and enddate and if i do this RewriteRule ^dvds/search/page/([0-9+])/(.+)$ /index2.php?page=$1&Keywords=$2 i get ERROR 404 File not Found any suggestions? Link to comment https://forums.phpfreaks.com/topic/181875-solved-rewriterule-dvdssearchpage0-9-index2php/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.