Posts by Raphael Monteiro • 21 points
2 posts
-
1
votes2
answers897
viewsA: Problem using CODEIGNITER on Nginx server
I was able to solve the problem by including the following lines location /controle { try_files $uri $uri/ /controle/index.php?$args; } just above: location ~ \.php$ { With this, the system using…
-
1
votes2
answers897
viewsQ: Problem using CODEIGNITER on Nginx server
My site was hosted at UOLHOST and worked perfectly with the following . htaccess RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond $1…