Skip to content

Instantly share code, notes, and snippets.

@Vesely
Created March 7, 2016 20:05
Show Gist options
  • Save Vesely/d052a34c1e7fed3283e9 to your computer and use it in GitHub Desktop.
Save Vesely/d052a34c1e7fed3283e9 to your computer and use it in GitHub Desktop.
Htaccess snippet - Změní root adresář do podsložky www (užitečné pro všechny weby na Nette)
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^$ /www/ [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/www/
RewriteRule ^(.*)$ /www/$1
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment