Skip to content
Snippets Groups Projects
Select Git revision
  • e8083e3724c9b2a25907b21f07edb8625dde623d
  • main default protected
  • (Gagafeee)
3 results

.htaccess

Blame
  • .htaccess 224 B
    php_flag display_errors On
    Options +FollowSymLinks -MultiViews
    
    <IfModule mod_rewrite.c>
    	RewriteEngine on
      	RewriteCond %{REQUEST_FILENAME} !-f
    	RewriteCond %{REQUEST_FILENAME} !-d
    	RewriteRule ^ index.php [L]
    </IfModule>