返回

amh搭建海洋cms注意事项

   
摘要GPT
摘要小助理暂时失联跑路啦……😜

海洋CMS又名SEACMS,完全开源免费,自适应电脑、手机、平板、APP多终端,无加密、更安全,是您最佳的建站工具!

爬滚打多年,海洋CMS有着丰富的经验和技术积累,并且能够随着流行趋势加入更多当下流行的功能。

注意几点

  1. 根目录删除.user.ini 文件
  2. data目录设置权限为777,其余555
  3. 如果导入数据库文件后缀为sql.gz,先解压为sql
  4. 修改common.inc.php数据库信息
  5. 数据库设置那里要启用远程开启 
  6. 伪静态规则

伪静态规则

location / {
	rewrite ^/frim/index(.+?)\.html$ /list/index.php?$1 last;
	rewrite ^/movie/index(.+?)\.html$ /detail/index.php?$1 last;
	rewrite ^/play/([0-9]+)-([0-9]+)-([0-9]+)\.html$ /video/index.php?$1-$2-$3 last;
	rewrite ^/topic/index(.+?)\.html$ /topic/index.php?$1 last;
	rewrite ^/topiclist/index(.+?).html$ /topiclist/index.php?$1 last;
	rewrite ^/index\.html$ index.php permanent;
	rewrite ^/news\.html$ news/ permanent;
	rewrite ^/part/index(.+?)\.html$ /articlelist/index.php?$1 last;
	rewrite ^/article/index(.+?)\.html$ /article/index.php?$1 last;
}
知识共享许可证 CC BY-NC-SA 4.0
最后更新于 2024-07-17 18:28
使用 Hugo 构建
主题 hugo-magic小洋葱 魔改 由 Jimmy 设计
Written by Human, Not by AI