mod_rewrite .htaccess need help amylee, Sub,Gum and Rukiya

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    mod_rewrite .htaccess need help amylee, Sub,Gum and Rukiya

    mod_rewrite .htaccess need help Sub,Gum and Rukiya Lavalair Mods Lavalair Mods Lavalair Mods

    Any one could give me the mod_rewrite on .htaccess to fetch user like

    wap.pinoy9.com/gabo
    wap.pinoy9.com/mangs
    wap.pinoy9.com/keith04

    index.php?user=gabo
    index.php?user=mangs
    index.php?user=keith04

    how to change http://url.com/index.php?user=gabo to url.com/gabo ?

    how to make url.com/gabo

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(\w+)/?$ /index.php?user=$1

    handler code

    Code:
    <?php   
      
    // Get the username from the url   
    $id = $_GET['user'];   
      
    ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"   
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">   
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">   
    <head>   
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>   
        <title>Simple mod\_rewrite example</title>   
        <style type="text/css"> .green { color: green; } </style>   
    </head>   
    <body>   
      <h1>You Are on index.php!</h1>   
      <p>Welcome: <span class="green"><?php echo $id; ?></span></p>   
    </body>   
    </html>

    what's wrong with this code? it gives me error 500 for http://url.com/gabo help me please..


    Any coder can help me? Lavalair Mods mod_rewrite .htaccess need help amylee, Sub,Gum and Rukiya custom link page for users
    Last edited by waplinks; 11.11.09, 06:23. Reason: wrong spelling...

    #2
    Mod_rewrite tutorial has been posted here already..Please use our search tool..
    PHP Code:
    RewriteRule ^([a-z,0-9]+) /index.php?user=$[NC
    try this one..
    Last edited by kiLLeR-eyEd_14; 11.11.09, 08:16.
    My Blog: http://jhommark.blogspot.com
    My Facebook: http://www.facebook.com/jhommark
    My Official Site: http://www.undergroundweb.tk
    My Community Site: http://undergroundwap.xtreemhost.com

    Comment


      #3
      topic closed

      Use search button

      LMAO u wont get any help from gumslone regarding lava he never used it same with subzero he also dnt do lava and i think Rukiya are the one who could help but will need to get into his good books LMAO

      Comment


        #4
        Originally posted by riderz View Post
        topic closed

        Use search button

        LMAO u wont get any help from gumslone regarding lava he never used it same with subzero he also dnt do lava and i think Rukiya are the one who could help but will need to get into his good books LMAO
        Riderz u are being mean m8 lol

        PHP Code:
        foreach ($_SERVER as $server => $value)
        {
        echo 
        "$server is $value<br />";

        Comment

        Working...
        X