-
Notifications
You must be signed in to change notification settings - Fork 1
/
.htaccess
23 lines (21 loc) · 863 Bytes
/
.htaccess
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} /about$ [OR]
RewriteCond %{REQUEST_URI} /account$ [OR]
RewriteCond %{REQUEST_URI} /profile$ [OR]
RewriteCond %{REQUEST_URI} /login$ [OR]
RewriteCond %{REQUEST_URI} /home$ [OR]
RewriteCond %{REQUEST_URI} /products$ [OR]
RewriteCond %{REQUEST_URI} /contact$ [OR]
RewriteCond %{REQUEST_URI} /cart$ [OR]
RewriteCond %{REQUEST_URI} /details [OR]
RewriteCond %{REQUEST_URI} /admin$ [OR]
RewriteCond %{REQUEST_URI} /account-management [OR]
RewriteCond %{REQUEST_URI} /product-management [OR]
RewriteCond %{REQUEST_URI} /search [OR]
RewriteCond %{REQUEST_URI} /login-admin [OR]
RewriteCond %{REQUEST_URI} .jpg|.png|.svg [OR]
RewriteCond %{REQUEST_URI} /$
RewriteRule (.*) public/$1 [L]
ErrorDocument 404 404.php
</IfModule>