Only seeing index page 404 on other pages
Just done an install, there where no errors during he install and the index page page shows fine. If I click on login link I get a 404 not found error.
I have installed it on my ubuntu box running php 7.4, mysql and apache2.
Any ideas?
many thanks
Comments
Log in or create an account to post a comment.
Re: Only seeing index page 404 on other pages
-> ModRewrite
What does the link for Login looks like?
http://example.com/Login
http://example.com/?page=Login
Re: Only seeing index page 404 on other pages
In the apache I have apache2.conf does not control the loadmodule any more it is in its own directory. You might want to look at your instructions on that bit.
Many thanks
Re: Only seeing index page 404 on other pages
When mod_rewrite is shown in LoadedModules - Test with
<?php phpinfo(); ?>
as code in test.php in your DocumentRoot Directory - and 404 is still shown, you might want to change your apache2 configuration to allow .htaccess rules.Change Directory Options to
and restart apache2
e.g. for ubuntu:
sudo nano /etc/apache2/sites-available/000-default.conf
if you have no default.conf, create one: sudo a2ensite 000-default.conf