Ihaveanazurehostede-commercesystem( link ) Developed in Framework CodeIgniter 1.7.2 The system is loaded in the index. However, I can not 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 have already set up the files:
- config.php (base (). url)
- database.php (connection)
- autoload.php (url)
Are there any other settings to be made, either in azure or codeigniter?