-
Notifications
You must be signed in to change notification settings - Fork 6
/
.htaccess
28 lines (22 loc) · 1.13 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
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^login/?$ api_customerlogin.php [NC,L]
RewriteRule ^signin/?$ api_signup.php [NC,L]
RewriteRule ^cart/?$ cart.php [NC,L]
RewriteRule ^categories/?$ categories.php [NC,L]
RewriteRule ^products/([a-zA-Z0-9_-]+)/?$ categoryproducts.php?id=$1 [NC,L]
RewriteRule ^startcheckout/?$ checkout.php [NC,L]
RewriteRule ^shipingmethods/?$ checkoutshiping.php [NC,L]
RewriteRule ^countriesdropdown/?$ countrylist.php [NC,L]
RewriteRule ^newaddress/?$ createaddress.php [NC,L]
RewriteRule ^addressbook/?$ customeralladdress.php [NC,L]
RewriteRule ^customerorders/?$ customerorders.php [NC,L]
RewriteRule ^updatecustomer/?$ customerupdate.php [NC,L]
RewriteRule ^dash/?$ dasboard.php [NC,L]
RewriteRule ^regions/?$ usregionsid.php [NC,L]
RewriteRule ^regions/?$ usregionsid.php [NC,L]
RewriteRule ^confirmorder/?$ placeorder.php [NC,L]
RewriteRule ^productdetails/?$ productview.php [NC,L]
RewriteRule ^productdetails/?$ productview.php [NC,L]
RewriteRule ^deleteaddress/?$ deleteadress.php [NC,L]
RewriteRule ^namesearch/?$ search.php [NC,L]