I have installed Slim3 in linux machine using composer.
i have created index.php file.
Now if i will try to access root dir it will give me “Welcome back” message but if i will try to access “/profile/Name” it is throwing “Not Found” error in the browser.
Yes i have added that in httpd.config
This is my code and i am sure my apache server is using .htacces file of my folder because if i will give root dir of project in URL then it is working but whenever i am giving some arguments like “profile/brijesh” then only it is throwing Not Found.
Try with this in the .htaccess:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]