Posts: 2
Threads: 1
Joined: Sep 2019
Reputation:
0
I use htaccess to change url from http://localhost/public/ to http://localhost/ but when using index.php http://localhost/index.php, I got an error:
Controller App\Controllers\Index.php not found, but when I run http://localhost/public/index.php I got no error
Please help...
Posts: 25
Threads: 5
Joined: Feb 2019
Reputation:
0
09-13-2019, 11:49 PM
(This post was last modified: 09-13-2019, 11:49 PM by msjagan.)
You have to do couple of steps to remove the public text from the URL
#1 Copy "index.php" and ".htaccess" files from the public folder and the paste on the root directory (eg. http://localhost)
#2 After pasting both files to the root folder, open the index.php from the root directory and edit the following line as shown below
$pathsPath = FCPATH . '../app/Config/Paths.php';
To
$pathsPath = FCPATH . 'app/Config/Paths.php';
Try this, It will work