登录后体验更多功能
使用使用请下载发布版,集成较少插件。数据库请采用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
xiunobbs4.0
xiunobbs4.07
xiunobbs4.04(支持php8.0)
xiunobbs4.1
自打看了楼主的帖子,腰不酸背不疼,一口气上二楼
lang[thread_please_after_login_reply]