所有网址都转到 web/index.html

All URLs go to web/index.html

无论我使用什么 URL,我总是进入 web/index.jtml 文件。 我不知道为什么,所以我真的不知道我可以给你看哪个文件。

我从网站的生产版本中获取文件。

这是我的 .htaccess

目录索引app.php

<IfModule mod_negotiation.c>
    Options -MultiViews
</IfModule>

<IfModule mod_rewrite.c>
    RewriteEngine On

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

    # Sets the HTTP_AUTHORIZATION header removed by Apache
    RewriteCond %{HTTP:Authorization} .
    RewriteRule ^ - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

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

    # If the requested filename exists, simply serve it.
    # We only want to let Apache serve files and not directories.
    RewriteCond %{REQUEST_FILENAME} -f
    RewriteRule ^ - [L]

    # Rewrite all other queries to the front controller.
    RewriteRule ^ %{ENV:BASE}/app.php [L]
</IfModule>

<IfModule !mod_rewrite.c>
    <IfModule mod_alias.c>
        RedirectMatch 302 ^/$ /app.php/
    </IfModule>
</IfModule>

这是我的security.yaml

安全: 编码器: AppBundle\Entity\User: 算法:bcrypt

    providers:
        db_provider:
            entity:
                class: AppBundle:User
                property: username

    firewalls:
        dev:
            pattern: ^/(_(profiler|wdt)|css|images|js)/
            security: false

        #secured_api:
        #    anonymous: true
        #    stateless: true
        #    guard:
        #        authenticators:
        #            - AppBundle\Security\TokenAuthenticator
        main:
            anonymous: ~
            http_basic: ~
            form_login:
                login_path: login
                check_path: login
                default_target_path: graphic

            logout:
                path: /logout
                target: /login

请让我知道是否有我可以展示的文件可以实际帮助,因为我真的不知道这里出了什么问题。 我刚刚从 FTP 获取文件,进行了作曲家更新,启动服务器,然后无论我尝试什么 URL,无论她是否被映射,我总是着陆在这个 website/index.html 文件.

将您的 .htaccess 更改为它

RewriteEngine On
RewriteRule ^(.*)$ web/ [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ app.php [QSA,L]

事实上,我刚刚忘记将 app_dev 包含在 URL 中......我的错。抱歉打扰了。