Symfony2将localhost/subdir/web/app.php/action重写为localhost/sub


Symfony2 rewrite localhost/subdir/web/app.php/action to localhost/subdir/action

我尝试在URL中不使用/web slug的情况下使用Symphony 2项目。我已经将以下内容添加到根文件夹(localhost/subdr)中的.htaccess文件中。

<IfModule mod_rewrite.c>
    Options +FollowSymlinks
    RewriteEngine On
    # Explicitly disable rewriting for front controllers
    RewriteRule ^web/app_dev.php - [L]
    RewriteRule ^web/app.php - [L]
    # Fix the bundles folder
    RewriteCond %{HTTP_HOST} ^localhost/subdir/$
    RewriteRule ^bundles/(.*)$ /web/bundles/$1  [QSA,L]
    RewriteCond %{HTTP_HOST} ^localhost/subdir/$
    RewriteCond %{REQUEST_FILENAME} !-f
    # Change below before deploying to production
    #RewriteRule ^(.*)$ /web/app.php [QSA,L]
    RewriteRule ^(.*)$ web/app_dev.php [QSA,L]
</IfModule>

这个脚本加载我的页面,但它没有得到任何/web/bundle/mybundle/javascript//images//css/文件。这些给了我404的错误。因为在<head>标签中,它表示/bundle/mybundle/javascript/而没有/web前缀。在web探查器、调试工具栏等上也是如此

如何修复我的.htaccess以使其工作?

web/文件夹是根web目录如果您的配置不正确,请告诉您的apache将web作为文档根目录。在httpd.conf中类似:

<VirtualHost *:80>
  ServerName name.localhost.com
  DocumentRoot "/Projects/name/web"
  <Directory "/Projects/name/web">
    Options Indexes FollowSymLinks
    AllowOverride All
    Allow from All
  </Directory>
</VirtualHost>

否则,例如您的parameters.yml和数据库传递等都可以访问。

在url中重写app.php/app_dev.php的web/.htaccess conf可能看起来像:

# Use the front controller as index file. It serves as a fallback solution when
# every other rewrite/redirect fails (e.g. in an aliased environment without
# mod_rewrite). Additionally, this reduces the matching process for the
# start page (path "/") because otherwise Apache will apply the rewriting rules
# to each configured DirectoryIndex file (e.g. index.php, index.html, index.pl).
DirectoryIndex app.php


<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::'2$
    RewriteRule ^(.*) - [E=BASE:%1]
    RewriteCond %{ENV:REDIRECT_STATUS} ^$
    RewriteRule ^app.php(/(.*)|$) %{ENV:BASE}/$2 [R=301,L]    ##### this is the part that you     should tweak, have the .htaccess point the request to app_dev.php, since the routing.yml is empty initially
    RewriteCond %{REQUEST_FILENAME} -f
    RewriteRule .? - [L]
    RewriteRule .? %{ENV:BASE}/app.php [L]        ##### this is the part that you should tweak, have the .htaccess point the request to app_dev.php, since the routing.yml is empty initially
</IfModule>

<IfModule !mod_rewrite.c>
    <IfModule mod_alias.c>
        # When mod_rewrite is not available, we instruct a temporary redirect of
        # the startpage to the front controller explicitly so that the website
        # and the generated links can still be used.
        RedirectMatch 302 ^/$ /app.php/
        # RedirectTemp cannot be used instead
    </IfModule>
</IfModule>