Giter Club home page Giter Club logo

xiunobbs's Introduction

介绍

Xiuno BBS 4.0 是一款高性能轻论坛产品,采用 MIT 协议发布,您可以自由修改、派生版本、商用而不用担心任何法律风险。

截屏

image

使用

使用请下载发布版,集成较少插件。数据库请采用utf8mb4,安装完成后,请删除install目录。 插件和主题,直接上传到plugin目录中,后台插件中心开启。

安装插件后若出现问题,请先清理缓存(后台 - 其他 - 清理缓存)。

伪静态

后台设置开启伪静态,添加对应的伪静态规则。

Apache伪静态:
<IfModule mod_rewrite.c>
RewriteEngine on

# Apache 2.4
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule ^(.*?)([^/]*)$ $1index.php?$2 [QSA,PT,L]

# Apache other
#RewriteRule ^(.*?)([^/]*)\.htm(.*)$ $1/index.php?$2.htm$3 [L]
</IfModule>
Nginx伪静态:
location ~* \.(htm)$ {

    rewrite "^(.*)/(.+?).htm(.*?)$" $1/index.php?$2.htm$3 last;

}
Caddy伪静态(Caddyfile演示):
www.yourdomain.com {

# Set this path to your site's directory.
root * /var/www

file_server

# Or serve a PHP site through php-fpm:
php_fastcgi localhost:9000
}

插件下载

临时插件仓库:插件主题中心

下一步

  • 整理修复部分插件
  • 添加简约风、acg风格、绿色小清新风格主题。
  • 更新bootstrap

贡献者

创始人:axiuno

感谢:cnteacher@discuz、Discuz!、Team Artery、剑心@wooyun、右键森林、吴兆焕、杨永全、郑城、大象、燃烧的冰、⭐Star本项目的您。

Enjoy!

xiunobbs's People

Contributors

jiix avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.