CodeIgniter 3 app for dinbestehjelper.no. Excludes vendor/, local backup folders (new/, archive/, archived/) and DB dumps (*.sql) via .gitignore. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01P16ttGUge8zj91dm6WrmEb
15 lines
303 B
ApacheConf
15 lines
303 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
|
|
RewriteEngine on
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
<IfModule mod_php5.c>
|
|
RewriteRule ^(.*)$ index.php/$1 [L]
|
|
</IfModule>
|
|
|
|
<IfModule !mod_php5.c>
|
|
RewriteRule ^(.*)$ index.php?/$1 [L]
|
|
</IfModule>
|
|
|
|
</IfModule> |