
April 15th, 2009, 05:27 AM
|
|
Contributing User
|
|
Join Date: Nov 2007
Posts: 154
Time spent in forums: 17 h 16 m 9 sec
Reputation Power: 3
|
|
Quote: | Originally Posted by max196 Hello Friends,
I want to change my url from,
http:/mysitename/details.php?requested=name
to
http:/mysitename/name/
Please suggest me the url RewriteRule code!
Thank You! |
Code:
Options +FollowSymLinks
RewriteEngine on
RewriteRule http://mysitename/details/(.*)/(.*)/$ /details.php?$1=$2
New Url will be
Quote: | http://mysitename/details/requested/name/ |
OR
Code:
Options +FollowSymLinks
RewriteEngine on
RewriteRule details/(.*)/(.*)/$ /details.php?$1=$2
New Url will be
Quote: | http://mysitename/details/requested/name |
I have no clue, rewrite and play...
Cheers
__________________
Amateurs ... Built the ark.
Professionals ... Built the Titanic.
|