Backend Service Layer

This commit is contained in:
2019-03-08 13:33:27 +00:00
parent 2ba9d7ae58
commit 6c46364498
2 changed files with 42 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /api/providers/
#RewriteBase /
#Checks to
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin
ErrorDocument 404 /index.php
</IfModule>
+21
View File
@@ -0,0 +1,21 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /api/users/
#RewriteBase /
#Checks to
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin
ErrorDocument 404 /index.php
</IfModule>