mrlutin / esx-panel
此软件包已被废弃,不再维护。未建议替代软件包。
FiveM ESX服务器的Webadmin面板
dev-master
2017-12-31 17:59 UTC
Requires
- php: >=7.0.0
- fideloper/proxy: ~3.3
- invisnik/laravel-steam-auth: ^3.1
- laravel/framework: 5.5.*
- laravel/tinker: ~1.0
- laravelcollective/html: ^5.5
- nopjmp/discord-webhooks: ^0.2.2
Requires (Dev)
- filp/whoops: ~2.0
- fzaninotto/faker: ~1.4
- mockery/mockery: ~1.0
- phpunit/phpunit: ~6.0
This package is not auto-updated.
Last update: 2020-01-24 17:18:14 UTC
README
这是一个正在进行中的项目。
Apache
Laravel 包含一个 public/.htaccess 文件,用于提供路径中不带 index.php 前控制器的 URL。在用 Apache 服务 Laravel 之前,请确保启用 mod_rewrite 模块,以便服务器会尊重 .htaccess 文件。如果 .htaccess 文件与您的 Apache 安装不兼容,请尝试以下替代方案
Options +FollowSymLinks RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L]
Nginx
如果您正在使用 Nginx,则在您的站点配置中的以下指令将使所有请求都指向 index.php 前控制器
location / { try_files $uri $uri/ /index.php?$query_string; }