index.php到哪个路由重定向?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了index.php到哪个路由重定向?相关的知识,希望对你有一定的参考价值。
我正在研究symfony-demo项目,我遇到了一个疑问:这个项目的配置是为了让索引重定向到路由/被设想从语言环境中获取。事实是我想改变索引在设置时重定向的路由:www.mywebsite.com重定向到我想要的路由,我不知道如何实现这一点,这里我留下了我的index.php:
<?php
use App\Kernel;
use Symfony\Component\Debug\Debug;
use Symfony\Component\Dotenv\Dotenv;
use Symfony\Component\HttpFoundation\Request;
require __DIR__.'/../vendor/autoload.php';
// The check is to ensure we don't use .env in production
if (!isset($_SERVER['APP_ENV'])) {
if (!class_exists(Dotenv::class)) {
throw new \RuntimeException('APP_ENV environment variable is not defined. You need to define environment variables for configuration or add "symfony/dotenv" as a Composer dependency to load variables from a .env file.');
}
(new Dotenv())->load(__DIR__.'/../.env');
}
$env = $_SERVER['APP_ENV'] ?? 'dev';
$debug = (bool) ($_SERVER['APP_DEBUG'] ?? ('prod' !== $env));
if ($debug) {
umask(0000);
Debug::enable();
}
if ($trustedProxies = $_SERVER['TRUSTED_PROXIES'] ?? false) {
Request::setTrustedProxies(explode(',', $trustedProxies), Request::HEADER_X_FORWARDED_ALL ^ Request::HEADER_X_FORWARDED_HOST);
}
if ($trustedHosts = $_SERVER['TRUSTED_HOSTS'] ?? false) {
Request::setTrustedHosts(explode(',', $trustedHosts));
}
$kernel = new Kernel($env, $debug);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
我还想知道演示如何重定向到/ es,因为我搜索并没有找到。
答案
不要触摸public / index.php文件...让一个与“/”路由匹配的控制器是一个可以重定向的选项!
class IndexController extends AbstractController
{
/**
* @Route("/", name="index")
*/
public function index()
{
return $this->redirectToRoute('the_route_you_want');
}
}
以上是关于index.php到哪个路由重定向?的主要内容,如果未能解决你的问题,请参考以下文章
Laravel SSL .htaccess 重定向到 index.php
为啥我的 .htaccess 仅针对 https / ssl 不将 uri 路径重定向到 index.php?
PhP 本地主机重定向到 /var/www/html/index.php