盾给网虚拟机伪静态配置:
apache伪静态(把下面这串代码放进根目录.htaccess):
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
nginx伪静态(把下面这串代码放进根目录nginx.htaccess):
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
}
}
宝塔面板可以直接设置成thinkphp伪静态就行了
PHP版本:php7.3
运行目录:根目录/(不需要设置/public)
后台地址:域名/admin
用户名:mvso
密码:123456
全站对接360官方接口
配置要求:
PHP7.2+
nginx,apache
mysql
.htaccess为apache伪静态
nginx.htaccess为nginx伪静态