0

私はsymfony1.0を学んでいますが、ページが適切にリダイレクトされないという問題に継続的に直面しています

私はすべての方法を試しましたが、すべての試みで失敗しました。setAuthentication()またはsession()が原因ですか?

更新:.htaccessファイル:

Options +FollowSymLinks +ExecCGI


#rewritecond %{http_host} ^www.imaginamalta.com/New/ [nc]
#rewriterule ^(.*)$ https://www.imaginamalta.com/New/$1 [r=301,L]

<IfModule mod_rewrite.c>
  RewriteEngine On

  # uncomment the following line, if you are having trouble
  # getting no_script_name to work
  #RewriteBase /

  # we skip all files with .something
  # comment the following 3 lines to allow periods in routes
  RewriteCond %{REQUEST_URI} \..+$
  RewriteCond %{REQUEST_URI} !\.html$
  RewriteRule .* - [L]

  # we check if the .html version is here (caching)
  RewriteRule ^$ index.html [QSA]
  RewriteRule ^([^.]+)$ $1.html [QSA]
  RewriteCond %{REQUEST_FILENAME} !-f

  # no, so we redirect to our front web controller
  RewriteRule ^(.*)$ index.php [QSA,L]

  rewritecond %{http_host} ^http://meh.newsly.svs113/ [nc]
  rewriterule ^(.*)$ http://meh.newsly.svs113/$1 [r=301,L]

</IfModule>

# big crash from our front web controller
ErrorDocument 500 "<h2>Application error</h2>symfony application failed to start properly"
4

1 に答える 1

0

に問題があるようですね.htaccess。に設定AllowOverrideしてみてくださいALL

于 2012-07-10T07:50:28.527 に答える