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

后端 未结 4 473
春和景丽
春和景丽 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:51

    Just try to rewrite /index.html and /index.php into /home.php

    Options +FollowSymlinks
    RewriteEngine on
    
    RewriteCond %{REQUEST_URI} ^/index\.(html|php)
    RewriteRule ^(.*) /home.php
    

提交回复
热议问题