how to make default page home.php instead of index.html and index.php

后端 未结 4 463
春和景丽
春和景丽 2020-12-09 04:15

I have website http://mywebsite.com If I hit this URL it take index.php and index.html as default page. How can I make home.php as default page. I have tried this but not wo

4条回答
  •  执笔经年
    2020-12-09 04:55

    You need AllowOverride +Indexes in your httpd.conf to be able to use DirectoryIndex in .htaccess.

    Barring that, the absolutely easiest way to redirect (without the root access to Apache config and modules) is putting this as index.html:

    
    
      
        
      
      
      
    
    

提交回复
热议问题