LightSNS 需要 URL Rewrite 支持,请将以下配置添加到 Web 服务器,配置完成后重启/重载服务
location / {
try_files $uri $uri/ /public/index.php?$query_string;
}
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} !\.(css|js|png|jpg|jpeg|gif|svg|ico|woff2?|ttf|eot|map)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ public/index.php [QSA,L]
</IfModule>