lovesmith Posted March 2, 2008 Share Posted March 2, 2008 well i have following lines in my .htaccess file RewriteRule ^contractors/([a-z]*) index.php?uname=$1 the link goes like this http://www.mysite.com/contractors/myname goes to http://www.mysite.com/index.php?uname=myname i want to get the value of url like this http://www.mysite.com/contractors/myname, but when i use $_SERVER['PHP_SELF'] it gives an actual path index.php. How i can get the re-writed path? Quote Link to comment Share on other sites More sharing options...
trq Posted March 2, 2008 Share Posted March 2, 2008 basename($_SERVER['REQUEST_URI']); 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.