source: branches/Modular/.htaccess@ 387

Last change on this file since 387 was 383, checked in by chronos, 13 years ago
  • Přidáno: Kostra základního systémového modulu System.
  • Přidáno: Obsluha datových typů pro HTML kód a HTTP protokol.
  • Upraveno: Do ViewList zkopírování generování tabulky se stránkováním a řazením.
File size: 578 bytes
Line 
1<Files ReadMe.txt>
2 order allow,deny
3 deny from all
4</Files>
5
6RewriteEngine On
7RewriteBase /
8
9# Pretty urls on localhost with alias
10RewriteCond %{HTTP_HOST} localhost
11RewriteCond %{REQUEST_FILENAME} !-f
12RewriteCond %{REQUEST_FILENAME} !-d
13RewriteRule ^(.*)$ centrala/index.php?$1
14#RewriteRule ^(.*)$ index.php?$1
15
16# Pretty urls
17RewriteCond %{HTTP_HOST} centrala.zdechov.net
18RewriteCond %{REQUEST_FILENAME} !-f
19RewriteCond %{REQUEST_FILENAME} !-d
20RewriteRule ^(.*)$ index.php?$1
21
22
23#ErrorDocument 403 "index.php?page=403"
24#ErrorDocument 404 "index.php?page=404"
Note: See TracBrowser for help on using the repository browser.