php-reports icon indicating copy to clipboard operation
php-reports copied to clipboard

error 404 Not Found

Open Mez67 opened this issue 9 years ago • 3 comments

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 ????

0215

Mez67 avatar Oct 06 '16 16:10 Mez67

Anyone wants to reply? I have same problem, and i followed the installation guide....

jamaisx avatar Apr 06 '18 07:04 jamaisx

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

bradstw avatar Jul 22 '21 20:07 bradstw

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!

Thales-Lima avatar Jan 14 '22 18:01 Thales-Lima