301重定向 修改默认网站访问文件
Posted 青柚
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了301重定向 修改默认网站访问文件相关的知识,希望对你有一定的参考价值。
<IfModule mod_rewrite.c>
Options +FollowSymlinks
#新规则
#RewriteEngine On
#QSA 映射
#RewriteRule 旧网址 新网址 [QSA]
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
#修改默认访问文件
<Files ~ "^.(htaccess|htpasswd)$">
deny from all
</Files>
#这里是默认的访问文件名称
DirectoryIndex index.html index.php
order deny,allow
</IfModule>
以上是关于301重定向 修改默认网站访问文件的主要内容,如果未能解决你的问题,请参考以下文章