1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Mod rewrite question

Discussion in 'Apache' started by lowridertj, Aug 9, 2007.

Thread Status:
Not open for further replies.
  1. #1
    lowridertj, Aug 9, 2007 IP
  2. powerspike

    powerspike Peon

    Messages:
    312
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #2
    something like

    RewriteRule ^([a-zA-Z0-9]+)$ /profile.php?user=Sam [L,N]

    that should do what your asking, you'll also need to change your application to use the new url scheme as well.
     
    powerspike, Aug 9, 2007 IP
  3. bouncer69

    bouncer69 Peon

    Messages:
    978
    Likes Received:
    43
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Try this

    Options +FollowSymLinks
    RewriteEngine on
    RewriteRule (.*)/$ /profile.php?user=$1
     
    bouncer69, Aug 9, 2007 IP
  4. VimF

    VimF Well-Known Member

    Messages:
    307
    Likes Received:
    27
    Best Answers:
    0
    Trophy Points:
    118
    #4
    Options FollowSymLinks
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /profile.php?user=$1 [L,NC]

    Or

    Options FollowSymLinks
    RewriteEngine On
    RewriteRule ^([a-z0-9_-]+)$ /profile.php?user=$1 [L,NC]


    Also changing your code is needed to make it print out the correct URLs.
     
    VimF, Aug 9, 2007 IP
    lowridertj likes this.
  5. lowridertj

    lowridertj Well-Known Member

    Messages:
    2,882
    Likes Received:
    40
    Best Answers:
    0
    Trophy Points:
    195
    #5
    Im sorry I should have exalained that

    Sam

    Is data pulled from my tables.

    Therefore that has to be in there somehow. And needed intire mod rewrite rules to place in htaccess file as im completely new to rewrite.
     
    lowridertj, Aug 9, 2007 IP
  6. lowridertj

    lowridertj Well-Known Member

    Messages:
    2,882
    Likes Received:
    40
    Best Answers:
    0
    Trophy Points:
    195
    #6
    Vimf rep added thanks works great.
     
    lowridertj, Aug 9, 2007 IP
Thread Status:
Not open for further replies.