Jump to content

php .htaccess issue !


d.shankar

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.