-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.htaccess
27 lines (25 loc) · 1.09 KB
/
.htaccess
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
## Default .htaccess file
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/_dev/.*
RewriteCond %{REQUEST_URI} !^/app.*
RewriteCond %{REQUEST_URI} !^/bower_components/.*
RewriteCond %{REQUEST_URI} !^/nomoEFW/app/.*
RewriteCond %{REQUEST_URI} !^/admin/app/.*
RewriteCond %{REQUEST_URI} !^/frontend-php-website/app/.*
RewriteCond %{REQUEST_URI} !^/frontend-single-page-app/app/.*
RewriteCond %{REQUEST_URI} !^/frontend-static/.*
RewriteCond %{REQUEST_URI} !^/backend/app/.*
RewriteCond %{REQUEST_URI} !^/media/.*
RewriteCond %{REQUEST_URI} !^/dist/.*
RewriteCond %{REQUEST_URI} !^/example.html.*
RewriteCond %{REQUEST_URI} !^/robots.txt$
RewriteCond %{REQUEST_URI} !^/patchdb.php.*
RewriteCond %{REQUEST_URI} !^/cron.php.*
RewriteCond %{REQUEST_URI} !^/favicon.ico$
RewriteRule ^(.*)$ index.php [L]
AddType text/cache-manifest .manifest
##<IfModule mod_deflate.c>
## SetOutputFilter DEFLATE
## AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript application/json
##</IfModule>