Quick help with .htaccess redirect needed

Discussion in 'Apache' started by dshah, Aug 28, 2006.

  1. #1
    I want to redirect links with .html extention to just file name.

    Something like

    example.com/dir/dir/abc.html to example.com/dir/dir/abc



    Could someone give me quick solution please.


    Thanks
     
    dshah, Aug 28, 2006 IP
  2. Nintendo

    Nintendo ♬ King of da Wackos ♬

    Messages:
    12,890
    Likes Received:
    1,064
    Best Answers:
    0
    Trophy Points:
    430
    #2
    Options +Indexes
    Options +FollowSymlinks
    RewriteEngine on
    RewriteBase /
    RewriteRule ^([^.]+)\.html$ http://www.domain.com/$1 [R=301,L]
     
    Nintendo, Aug 28, 2006 IP
  3. dshah

    dshah Well-Known Member

    Messages:
    1,840
    Likes Received:
    69
    Best Answers:
    0
    Trophy Points:
    115
    #3
    Hey thanks, will try it out. For now I have used a way around this.
     
    dshah, Aug 28, 2006 IP