404.路由不起作用,但登陆页面正在运行。未加载样式文件。 Symfony的

时间:2017-05-16 12:45:31

标签: php .htaccess symfony deployment

我为我糟糕的英语道歉。请帮我。 我在主机Reg.ru上通过ftp部署网站。我使用ssh上的控制台执行了我推荐Symfony的所有操作。

/**
 * @Route("/", name="homepage")
 */
public function indexAction(Request $request)
{
    return $this->render('homepage/index.html.twig');
}

链接文件

<link rel="stylesheet" href="{{ asset('css/homepage/main.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('js/slider/style.css') }}" />

的.htaccess

DirectoryIndex app.php

<IfModule mod_negotiation.c>
    Options -MultiViews
</IfModule>
<IfModule mod_rewrite.c>
    RewriteEngine On

    RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$
    RewriteRule ^(.*) - [E=BASE:%1]

    RewriteCond %{HTTP:Authorization} .
    RewriteRule ^ - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

    RewriteCond %{ENV:REDIRECT_STATUS} ^$
    RewriteRule ^app\.php(?:/(.*)|$) %{ENV:BASE}/$1 [R=301,L]

    RewriteCond %{REQUEST_FILENAME} -f
    RewriteRule ^ - [L]

    RewriteRule ^ %{ENV:BASE}/app.php [L]
</IfModule>
<IfModule !mod_rewrite.c>
    <IfModule mod_alias.c>
        RedirectMatch 302 ^/$ /app.php/
    </IfModule>
</IfModule>

1 个答案:

答案 0 :(得分:0)

解决方案:

documentRoot未经核心设置。 它应该指向/ web目录。