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 Beginners Query

Discussion in 'Apache' started by Weirfire, Aug 22, 2005.

  1. Weirfire

    Weirfire Language Translation Company

    Messages:
    6,979
    Likes Received:
    365
    Best Answers:
    0
    Trophy Points:
    280
    #21
    It's been almost 3 days now and I'm finally there!

    The following mod_rewrite rules I've got are as following

    <IfModule mod_rewrite.c>
    Options +FollowSymLinks
    RewriteEngine on
    RewriteBase /
    RewriteRule /(.*)$ singlearticle.php?articleid=$1 [L,R]
    </IfModule>
    Code (markup):
    I've got this in the directory /articles/ as the home directory already has a rewrite for another directory which is confusing this rewrite.

    Everything is rewriting properly except for the fact that when it rewrites it loses the value of articleid. Any ideas why this would happen?
     
    Weirfire, Aug 24, 2005 IP
  2. johnt

    johnt Peon

    Messages:
    178
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    0
    #22
    I don't think you need the leading / on the RewriteRule pattern
    try
    RewriteRule (.*)$ singlearticle.php?articleid=$1 [L,R]
    Code (markup):
    think that should do it

    John
     
    johnt, Aug 24, 2005 IP
  3. Weirfire

    Weirfire Language Translation Company

    Messages:
    6,979
    Likes Received:
    365
    Best Answers:
    0
    Trophy Points:
    280
    #23
    Perfect :)
     
    Weirfire, Aug 24, 2005 IP
  4. dct

    dct Finder of cool gadgets

    Messages:
    3,132
    Likes Received:
    328
    Best Answers:
    0
    Trophy Points:
    230
    #24
    Finally, this thread has a happy ending :D
     
    dct, Aug 24, 2005 IP
  5. johnt

    johnt Peon

    Messages:
    178
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    0
    #25
    amen to that :)
     
    johnt, Aug 24, 2005 IP
    Hodgedup likes this.
  6. Weirfire

    Weirfire Language Translation Company

    Messages:
    6,979
    Likes Received:
    365
    Best Answers:
    0
    Trophy Points:
    280
    #26
    All thanks to johnt's mod rewrite skills with a little helping hand from Nintendo. Thanks to everyone else who contributed as well. :)
     
    Weirfire, Aug 25, 2005 IP