1
I have an Ecommerce system hosted on Azure( http://lojavirtualcodeigniter1.azurewebsites.net/) Developed in Codeigniter Framework 1.7.2 The system is loaded in index. However, I cannot load the other url that are in the subfolders: Contact, Adm, Cart....
My . htaccess :
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
I’ve already set up the files:
- config.php (base(). url)
- database.php (related to)
- autoload.php (url)
Have any other settings to be made, in Azure or codeigniter ?