访问时网站将加载什么文件?

时间:2018-10-22 11:30:25

标签: php html

我正在尝试解决公司网站中的某些问题,但我不知道该网站的主文件在哪里。 在public_html文件夹中,没有index.html文件(或任何其他.html),只有index.php(我将在下面显示)和许多文件夹。我想对主要网站index.html(或您访问时网站加载的.html)做一个简单的更改。我怎么找到它?

这是index.php:

<?php

/**
 * Laravel - A PHP Framework For Web Artisans
 *
 * @package  Laravel
 * @author   Taylor Otwell <taylor@laravel.com>
 */

$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';

2 个答案:

答案 0 :(得分:0)

如果您使用的是laravel版本,则const VERSION ='5.4.36';然后您可以获取主文件

public_html / routes / web.php

Route::get('/', function () {
return view('welcome');

});

检查/调用位置

答案 1 :(得分:0)

Laravel在公用文件夹中有它的索引:public / index.php