The page you requested could not be found

Upozornění: Tohle vlákno je hodně staré a informace nemusí být platné pro současné Nette.
vosy
Člen | 532
+
0
-

ahoj,
nahodil jsem funkcni web na produkcni server na domenu www.domena.cz:2015

pri spusteni se mi zobrazi:

Page Not Found
The page you requested could not be found. It is possible that the address is incorrect, or that the page no longer exists. Please use a search engine to find what you are looking for.
error 404

vyvolava to funkce: $container->getService(‚application‘)->run();

da se nejak zjistit jakej soubor nelze najit

htaccess:

# Apache configuration file (see httpd.apache.org/docs/current/mod/quickreference.html)

# disable directory listing
<IfModule mod_autoindex.c>
	Options -Indexes
</IfModule>

# enable cool URL
<IfModule mod_rewrite.c>
	RewriteEngine On
	# RewriteBase /

	# prevents files starting with dot to be viewed by browser
	RewriteRule /\.|^\. - [F]

	# front controller
	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteCond %{REQUEST_FILENAME} !-d
	RewriteRule !\.(pdf|js|ico|css|rar|zip|tar\.gz|map)$ index.php [L]
</IfModule>

# enable gzip compression
<IfModule mod_deflate.c>
	<IfModule mod_filter.c>
		AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/x-javascript text/javascript application/javascript application/json
	</IfModule>
</IfModule>
<VirtualHost *:2015>
  UseCanonicalName Off
  DocumentRoot /data/domena_2015/www
  ServerName www.domena.cz

  ServerAlias *.domena.cz
cubic
Člen | 45
+
0
-

Asi nejjednodušší řešení je zapnout si na webu debug mode pomocí $configurator->setDebugMode() v bootstrapu.