problém s MOD REWRITE na hostingu
- Maren
- Člen | 23
Dobré ráno všem.
Při implementaci Nette na webhosting jsem se setkal s problémem s
„mod_rewrite“.
Checker mi vypisuje
–.htaccess mod_rewrite Disabled
Mod_rewrite is probably not present. You will not be able to use Cool URL.
--
V kořenovém adresáři (tam kam jsem nahrál NETTE) mám v .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 /www
# 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>
<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>
a dále po rozkliknutí složky www mám v .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 /
# 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>
<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>
Otázka zní, jestli je v této části chyba, nebo je potřeba konfigurace ještě někde jinde nebo je to věc, kterou nutno řešit s poskytovatelem hostingu.
Předem díky za odpovědi.
Maren
- Ot@s
- Backer | 476
Checker mi vypisuje
- .htaccess mod_rewrite Disabled
Mod_rewrite is probably not present. You will not be able to use Cool URL.
--
Vypiš si PHPinfo a hledej „Loaded Modules“ – měl by tam figurovat mod_rewrite (případ hostingu pod Apache). Jestli tam není, řeš to s poskytovatelem hostingu. Jestli tam je, nahrej si na prostor čistý sandbox a vyzkoušej to. Pak případně napiš…
Editoval Ot@s (14. 11. 2014 8:20)