分页: 1 / 1

1.0(14.10.10)改首页为另一个html文件后打开index.php搜索失效?

发表于 : 2020年 8月 9日 00:04
邪恶海盗
RT,我将首页设置为xx.html文件,使用xx.xx/index.php的方式进入博客,这样点搜索按钮时会跳回到xx.xx/xx.html

是程序BUG还是需要修改哪里???

.htaccess是这样写的:
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On

DirectoryIndex main.html index.php

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>