修改.htaccess文件设置网站默认打开静态页面

.htaccess文件设置网站默认打开静态页面的方法。首先复制如下代码:

<Files ~ "^.(htaccess|htpasswd)$">
deny from all
</Files>
DirectoryIndex index.html index.php
order deny,allow

上面代码的意思是:网站默认打开根目录下文件的顺序。首先是“index.html“,若没有该文件,则打开“index.php”。

如果很不幸你和我用的是windows,请使用第三方编辑器(比如sublime)来编辑此文件(因为windows必须要有文件名),然后另存为即可。不要用windows自带的编辑器。 参考:

http://www.owe-love.com/myspace/?action=show&id=276

转载于:https://my.oschina.net/itfanr/blog/195628

猜你喜欢

转载自blog.csdn.net/weixin_34221276/article/details/91799340