error 404 Not Found
http://localhost/project/php-reports-master/report/html/?report=mysql/all-orders.sql http://localhost/project/php-reports-master/report/html/?report=php/timezones_multiple.php . . . all links
show error
404 Not Found The page you have requested could not be found.
what is sloution ????
Anyone wants to reply? I have same problem, and i followed the installation guide....
I know this is a very old question but hopefully if anyone comes along and has this issue this is what fixed it for me. Make sure that you have an .htaccess file in your directory with the following contents.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
DirectoryIndex index.php
I know this is a very old question but hopefully if anyone comes along and has this issue this is what fixed it for me. Make sure that you have an .htaccess file in your directory with the following contents.
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php [QSA,L] DirectoryIndex index.php
Thank you so much... That did the trick!