d.shankar Posted December 13, 2008 Share Posted December 13, 2008 hi freaks ! i am working with url rewriting http://www.test.com/new.php?id=www.google.com to http://www.test.com/www.google.com My .htaccess file RewriteEngine On RewriteRule ^([^/\.]+)/?$ new.php?id=$1 [L] new.php <?php echo $_GET['id']; ?> This works great for id parameter for all ALPHANUMERIC CHARACTERS eg, id=1 , id=abc , id=1abc etc.. but it doesnt work if i pass id=www.google.com here . (period) is creating the issue. how can i fix this ? does this have anything with the regex ? Link to comment https://forums.phpfreaks.com/topic/136796-php-htaccess-issue/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.