16 lines
303 B
ApacheConf
16 lines
303 B
ApacheConf
Options +FollowSymLinks -Multiviews
|
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
SetEnv HTTP_MOD_REWRITE On
|
|
RewriteEngine on
|
|
IndexIgnore *
|
|
Options +MultiViews
|
|
|
|
ErrorDocument 404 /pageNotFound.php
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
</IfModule>
|