1 Star 0 Fork 63

jackerx / Fixhub

forked from Fixhub / Fixhub 
Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
server.php 642 Bytes
Copy Edit Raw Blame History
phecho authored 2016-08-31 16:01 . Initial commit
<?php
/*
* This file is part of Fixhub.
*
* Copyright (C) 2016 Fixhub.org
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
$uri = urldecode(
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
return false;
}
require_once __DIR__.'/public/index.php';
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jackerxff/Fixhub.git
git@gitee.com:jackerxff/Fixhub.git
jackerxff
Fixhub
Fixhub
master

Search

344bd9b3 5694891 D2dac590 5694891