所需工具:
- 服务器 【小玖互联为您保驾护航~】
- 聪明得脑袋瓜
- 购物车 | 智简魔方 (idcsmart.com) 【授权码】
- 一双听话的手
- 一双深情得眼睛 [观看小玖更多文章呐~]
环境要求:
- PHP7.2 ionCube、fileinfo 【以宝塔为例 -》点我查看图片《-】
- 数据库须使用MYSQL 5.6.0,禁止使用Opcache.
- 站点运行目录需设置为/public
伪静态配置:
Apche伪静态规则
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
SetEnvIf Authorization .+ HTTP_AUTHORIZATION=$0
</IfModule>
Nginx伪静态规则
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
THE END
暂无评论内容