getting index.php not found
Permalink
The requested URL /bomer-engineering-services/ was not found on this server.
I Get above mentioned message on a previously working site i can ga to login and login then the same messae appears.
Any idears for a solution i'm really stuck
I Get above mentioned message on a previously working site i can ga to login and login then the same messae appears.
Any idears for a solution i'm really stuck
Is your .htaccess file in tact? Are any other pages on your site down? Does this page still exist?
https://www.concrete5.org/community/forums/legacy-version-5-6-x/getting-index.php-not-found/#914709
Thanks very much!
The .htaccess was just missing and I didn’t see it.
So problem solved.
The .htaccess was just missing and I didn’t see it.
So problem solved.
Create .htaccess on your root folder and add below code.
# -- concrete5 urls start -- <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}/index.html !-f RewriteCond %{REQUEST_FILENAME}/index.php !-f RewriteRule . index.php [L] </IfModule> # -- concrete5 urls end --