0
I’m making a simple application in PHP with codeigniter, where I’m trying to access a controller, and apparently whenever I call this controller, it goes through Welcome, example:
localhost/estudando/Login/login
generates the same result as:
localhost/estudando/Welcome/Login/login.
And from the bug, back the same Welcome page only without css.
Have some . htaccess at the root of the project?
– rray
What is the configuration of your Virtualhost? As our friend said, you have some .htaccess configured at root?
– Fábio Jânio
Yes, there is a . htaccess, I am using rewrite: Rewriteengine On Rewritecond %{REQUEST_FILENAME/} ! -d Rewritecond %{REQUEST_FILENAME} ! -f Rewritecond %{REQUEST_FILENAME} ! -l Rewriterule (.+)$ index.php? url=$1 [QSA,L]
– instalação planejamento