We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Thanks for your awesome work. I'm using PHP 7.4. Win 10 64bit with Laragon. Here is my route code
$router->controller('/', App\Controllers\HomeController::class); $router->controller('/users', App\Controllers\UsersController::class);
$router->controller('/', App\Controllers\HomeController::class);
$router->controller('/users', App\Controllers\UsersController::class);
Here HomeController is working fine, when I go to my application home (https://smsecom.test), it's working fine.
But when I'm going to https://smsecom.test/users URL, I see: Not Found The requested URL /users was not found on this server.
I've configured composer.json, controllers, very well.
What is the problem here?
The text was updated successfully, but these errors were encountered:
You have to create a .htcasses file on your public directory that contains ``RewriteEngine On # RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule !.(css|js|icon|zip|rar|png|jpg|gif|pdf)$ index.php [L]``
Sorry, something went wrong.
No branches or pull requests
Hi,
Thanks for your awesome work. I'm using PHP 7.4. Win 10 64bit with Laragon. Here is my route code
$router->controller('/', App\Controllers\HomeController::class);
$router->controller('/users', App\Controllers\UsersController::class);
Here HomeController is working fine, when I go to my application home (https://smsecom.test), it's working fine.
But when I'm going to https://smsecom.test/users URL, I see:
Not Found
The requested URL /users was not found on this server.
I've configured composer.json, controllers, very well.
What is the problem here?
The text was updated successfully, but these errors were encountered: