Idea is:
if URL = "http:/localhost/site/"
else if URL = "http:/localhost/site"
redirect to
"http:/localhost/site/index.html"
Can this be done with .htaccess / Apache mod_rewrite and how?
Idea is:
redirect to
Can this be done with .htaccess / Apache mod_rewrite and how? |
||||
You could simple add this in your htaccess
|
|||
|
DirectoryIndex index.html
? – Jon Lin Jan 22 '12 at 6:50