彩虹聚合DNS管理系统
- 运行环境要求PHP7.4+,MySQL5.6+
- 设置网站运行目录为
public
- 设置伪静态为
ThinkPHP
- Nginx
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
- Apache
<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>
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容