No route for HTTP request – při odkazu na soubor
Upozornění: Tohle vlákno je hodně staré a informace nemusí být platné pro současné Nette.
- JaroslavRamba
- Člen | 20
Zdravím,
po zadání adresy http://subdomain.web.cz/images/img.jpg se mi vypíše error
Nette\Application\BadRequestException #404 No route for HTTP request.
.htaccess
# Apache configuration file (see httpd.apache.org/docs/current/mod/quickreference.html)
# disable directory listing
Options -Indexes
# enable cool URL
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{THE_REQUEST} ^.*/index.php
RewriteRule ^(.*)index.php$ /$1 [R=301,L]
# 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|gif|jpg|png|css|rar|zip|tar\.gz)$ index.php [L]
</IfModule>
# enable gzip compression
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/x-javascript text/javascript application/javascript application/json
</IfModule>
Potřebuji, aby to vyhodilo, že soubor neexistuje.
Díky za rady
Editoval JaroslavRamba (4. 9. 2013 11:06)