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.

Need a Simple rewrite rule for .htaccess

Discussion in 'Apache' started by Yuri_Orlov, Mar 25, 2011.

  1. #1
    Hello,
    I am in need of a rewrite rule for converting this:
    /content/something

    into this:
    /content.php?type=something

    Pls help
     
    Yuri_Orlov, Mar 25, 2011 IP
  2. joerich

    joerich Member

    Messages:
    99
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #2
    use this..

    RewriteCond %{HTTP_HOST} ^(www.)?yourdomain.com$
    RewriteRule ^([^/\.]+)/([^/\.]+)$ $1.php?type=$2
     
    joerich, Apr 13, 2011 IP