Revert "废弃文件,不需要合并"

This reverts commit cd0ebf8e5bda88fd9f27058610bebd051054b3d5.
This commit is contained in:
monanxiao 2023-03-15 17:03:31 +08:00 committed by liuxiaoquan
parent 6c922cdbe5
commit b24287686d
2 changed files with 7 additions and 6 deletions

View File

@ -1,7 +1,8 @@
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

View File

@ -2,4 +2,4 @@ location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
}