need help on redirecting

Discussion in 'PHP' started by FriendSwapMeet.com, Apr 26, 2010.

  1. #1
    can any body help me im trying to figure out how you can get a url like http://www.myspace/user
     
    FriendSwapMeet.com, Apr 26, 2010 IP
  2. danx10

    danx10 Peon

    Messages:
    1,179
    Likes Received:
    44
    Best Answers:
    2
    Trophy Points:
    0
    #2
    via .htaccess - mod rewrite
     
    danx10, Apr 26, 2010 IP
  3. Silver89

    Silver89 Notable Member

    Messages:
    2,243
    Likes Received:
    72
    Best Answers:
    0
    Trophy Points:
    205
    #3
    If your file is called http://www.myspace/user.php and you want it to show as http://www.myspace/user

    Then you would put this content in a file called .htaccess in your root:

    
    RewriteOptions inherit
    RewriteEngine on
    
    RewriteRule ^user$ user.php [L]
    
    Code (markup):
    You can then access the page through either url.
     
    Silver89, Apr 26, 2010 IP
  4. tata_capl

    tata_capl Peon

    Messages:
    461
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #4
    I am not able to understand can u please describe in more precise about where to place this code?
     
    tata_capl, Apr 26, 2010 IP
  5. extremephp

    extremephp Peon

    Messages:
    1,290
    Likes Received:
    32
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Well.... I Can help you all If you want me to Rewrite the URLS Using Htaccess..!

    PLease dont touch Htaccess until and unless you know what you are doing..! :)

    And if you edit it simply for a fun, then BAMN its all over..! :)
     
    extremephp, Apr 26, 2010 IP
  6. nezZario

    nezZario Peon

    Messages:
    45
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    See this URL, flib is a good friend of mine: (I can't post live links yet, please copy & paste into browser)

    http://www.askflib.com/article/making-friendly-urls
     
    nezZario, Apr 27, 2010 IP
  7. FriendSwapMeet.com

    FriendSwapMeet.com Peon

    Messages:
    67
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    RewriteEngine on
    Options +FollowSymlinks
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^([^/]+)/? /file.php?user=$1 [L]


    this is what i came up with
     
    FriendSwapMeet.com, Apr 27, 2010 IP