static pages to dynamic pages AND non-www to www

Discussion in 'Apache' started by dinvasco, Jul 9, 2007.

  1. #1
    hi,
    I want to make :
    /index.php?page=member

    to:

    /member.html

    Also,

    http://mydomain.com

    redirect to

    http://www.mydomain.com


    Thanks in advance.
     
    dinvasco, Jul 9, 2007 IP
  2. VimF

    VimF Well-Known Member

    Messages:
    307
    Likes Received:
    27
    Best Answers:
    0
    Trophy Points:
    118
    #2
    Options FollowSymLinks
    RewriteEngine On
    RewriteRule ^([^/]+)\.html$ index.php?page=$1 [NC]
    RewriteCond %{HTTP_HOST} !^www\.mydomain\.com$ [NC]
    RewriteRule ^(.*)$ http://www.mydomain.com/$1? [R=301,L]
     
    VimF, Jul 9, 2007 IP