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.

htacess 301 help

Discussion in 'Apache' started by GoOrange, Apr 24, 2010.

  1. #1
    hi

    recently i update my site and i change my url

    From
    www.mydomian.com/some-1-one/

    TO:
    www.mydomain.com/stupidme1/



    There are about 20 differ cat id. my question is its possible to redirect to my new one?

    Thanks

    advance
     
    GoOrange, Apr 24, 2010 IP
  2. pr0t0n

    pr0t0n Well-Known Member

    Messages:
    243
    Likes Received:
    10
    Best Answers:
    10
    Trophy Points:
    128
    #2
    Try putting this in .htaccess file in your root html folder:

    
    RewriteEngine On
    RewriteBase /
    
    RewriteRule ^some-([0-9]+)-one/$ /stupidme$1/ [R=301,L]
    RewriteRule ^some-([0-9]+)-one$ /stupidme$1/ [R=301,L]
    
    Code (markup):
    Worked for me when I tested it.
     
    pr0t0n, Apr 30, 2010 IP