Bubu-framework 的路由器

V1.0.0 2022-06-11 19:51 UTC

This package is auto-updated.

Last update: 2024-09-12 00:54:45 UTC


README

在您的根目录下放置

  • 对于 Apache 服务器
RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]
  • 对于 Nginx 服务器
try_files $uri /index.php;