Canman2005 Posted June 10, 2009 Share Posted June 10, 2009 Hi all I'm doing a re-write on .htaccess using RewriteEngine on RewriteRule ^([^/\.]+)/index.php/?$ membershome.php?url=$1 [L] If I then go to mysite/index.php everything works fine, but if I try and go to mysite/index.php?option=2 and then try and print the variable using print $_GET['option'] it doesnt seem to print it. does anyone know why? Thanks tons in advance Dave Link to comment https://forums.phpfreaks.com/topic/161680-passing-variables-on-rewrite/ Share on other sites More sharing options...
Canman2005 Posted June 10, 2009 Author Share Posted June 10, 2009 Solved it with $fullurl = $_SERVER['REQUEST_URI']; $_GET['page'] = end(explode('?option=',$fullurl)) Link to comment https://forums.phpfreaks.com/topic/161680-passing-variables-on-rewrite/#findComment-853127 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.