htaccess question

Discussion in 'Programming' started by adacprogramming, Mar 12, 2008.

  1. #1
    I don't know htaccess at all.:eek:

    I need the script to make it so that no matter what url you use it takes you to index.html.

    I only have one file in the folder, at one time this was on a windows server and so there are links trying to point to index.asp, i need to have the index.html page served instead.

    Thanks
     
    adacprogramming, Mar 12, 2008 IP
  2. Randombase

    Randombase Peon

    Messages:
    224
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #2
    RewriteEngine on
    RewriteRule ^(.*)$ index.html [L]
    Code (markup):
    Or something along the lines :p
     
    Randombase, Mar 13, 2008 IP