设计师网址导航基于ClassCMS开发的网址导航系统
ClassCMS是一款简单、灵活、安全、易于拓展的内容管理系统。
开放源代码,无任何加密。不区分商业版与免费版。
基于MIT协议,免费使用,无需授权。
兼容PHP5.2–PHP8.3,在APACHE、NGINX、IIS上都能使用,默认支持MySQL SQLite两种数据库,支持上百万数据量。
安装教程
上传网站文件到网站目录
绑定域名
开启伪静态
Apache伪静态(.htaccess文件,系统自带此伪静态文件,无需配置,支持子目录伪静态):
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
Nginx伪静态(如不使用伪静态,则需开启pathinfo才能安装):
location /
{
try_files $uri $uri/ /index.php?$args;
}
或者
location /{
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php/$1 last;
break;
}
}
Nginx子目录伪静态:
location /test/ {
if (!-e $request_filename) {
rewrite . /test/index.php last;
}
}
IIS伪静态(web.config)
IIS子目录伪静态(web.config存放于网站根目录)
评论(0)