I have recently created an account on OpenShift to host some of my applications and send them to my clients, so they can see, test and give me feedbacks.
My first application is a CodeIgniter project that I had on my computer. I created a default controller called tester
and set it on routes.php
.
I configured my .htaccess like this
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|images|robots\.txt|styles)
RewriteCond $1 !\.(ico|js|css|jpg|png|gif|html|ico?g)$
RewriteRule ^(.*)$ index.php/$1 [L]
It works fine on localhost, but it is redirecting me to the 404 page all the time when I try to see my website on OpenShift.
How can I test what route is being traced by Codeigniter? Any of you have any clue about what is happening?
use this.
in config.php
in Config/routes.php
in controller folder
inside main.php
in .htaccess(out side application folder)