I put some content in the test.php file and still gets the 404 error.
below is what is in the .htaccess file.
Options +SymLinksIfOwnerMatch
RewriteEngine On
RewriteBase /
Order Deny,Allow Deny From All # Allow asset …
http://localhost/index.php/test - receives 404
http://localhost/offline - receives
The site is currently offline.
Please try again later.
I created a test.php in the root with phpinfo() in it. This loads.
http://localhost/test.php
yes I have tried this with the ? and without the ?
from: RewriteRule .* index.php/$0 [L]
to: RewriteRule .* index.php?/$0 [L]
also tried putting the ? in the config.php file as well.
from: $config['index_page'] = "index.php";
to: $config['i…
Hello,
both URLs above get a 404 error.
the .htaccess file is the default file from the zip file.
changes in the .htaccess file affect the operation of apache, so I would assume that .htaccess is enabled.
As well as the config file being us…