Skip to content
Snippets Groups Projects
htaccess 307 B
Newer Older
  • Learn to ignore specific revisions
  • <Directory /var/www/beta/htdocs>
        Options +MultiViews
        <IfModule mod_rewrite.c>
        RewriteEngine On
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteCond %{REQUEST_URI} !^/index\.php.*
        RewriteRule ^(.*)$ index.php/$1 [QSA,L]
        </IfModule>
    </Directory>