symfony - Apache access log "GET / HTTP/1.1" 404 615 "-" -
when try enter local symfony2 site, loading long time , see white screen. in apache access log see message:
"127.0.0.1 - - [12/may/2015:12:38:12 +0300] "get / http/1.1" 404 615 "-" "mozilla/5.0 (x11; linux x86_64) applewebkit/537.36 (khtml, gecko) chrome/42.0.2311.135 safari/537.36"".
what reason?
have enabled rewrite?
http://symfony.com/doc/current/cookbook/configuration/web_server_configuration.html
<ifmodule mod_rewrite.c> options -multiviews rewriteengine on rewritecond %{request_filename} !-f rewriterule ^(.*)$ app.php [qsa,l] </ifmodule>
this allow view [domain]/
otherwise access @ [domain]/app.php
Comments
Post a Comment