usebb是一款开源而且高速的论坛程序,而且非常适合小型论坛使用,配合lighttpd服务器做论坛速度超级快.
lighttpd开启rewrite伪静态方法
lighttpd是不支持.htaccess的,这样我们如何来配置rewrite伪静态呢?在google上转了一圈之后,终于成功实现了lighttpd的伪静态,我们要做的,就是把规则...
lighttpd服务器Kloxo面板添加Discuz论坛重写规则
在Kloxo面板里配置lighttpd的Discuz X2.0论坛重写(rewrite、伪静态)规则: 在“域名”中找到要配置的域名,展示,选择“脚本”里的“lighttpd地址重写规则”,添加重写规...
kloxo面板的Lighttpd服务器如何开启Gzip压缩
先进入kloxo管理后台,修改php配置,将Output Compression前面的框打上勾 然后ssh连接到VPS
apache,lighttpd, ASP, PHP, JavaScript网站301重定向,转移权重的方法
不仅是首页url的重定向,整个网站里第一个url都要能重定向到对应的页面上,而不会出现404 page not found。
lighttpd服务器Failed to start lighttpd.service: Unit lighttpd.service is masked.解决办法
应该是之前卸载过lighttpd又重新安装造成的 使用命令 systemctl unmask lighttpd.service 或 /etc/systemd/system/lighttpd.servi...
Lighttpd ./configure error configure: error: no acceptable C compiler found in $PATH
Error message: configure: error: no acceptable C compiler found in $PATH how to deal with it ? u sho...
Lighttpd服务器,如何添加header头,禁止浏览器在线打开文件或播放视频,强制下载文件
强制要求所有文件直接下载,禁止在线打开 $HTTP =~ "^/downloads/.*" { setenv.add-response-header = ( "Content-Disposition"...
lighttpd启动失败,提示lighttpd.service: main process exited, code=exited, status=255/n/a的解决方法
centos 7.3 64bit system ------------------------------------------------------------------ Restart L...
lighttpd禁止IP直接访问及防盗链设置
#禁止IP直接访问lighttpd服务器,禁止其他人的域名解析到lighttpd服务器进行访问,防止恶意解析 $HTTP !~ "(^|.)yourdomain.com$" { url.access-...