ianlacey1986
Member
Posted 10 months ago #
Hi there,
I have been having many issue with my site http://www.350south.org in the past few weeks. When I try to access it now I am brought to the homepage but any tab I click from there takes me to a 404 page, however, Im confused as the site homepage is still accessible. Can someone help me identify the issue perhaps? I have very little knowledge about this and cant get further help til Monday so if anyone has suggestions, its much appreciated.
Thanks,
Ian.
darrenmeehan
Member
Posted 10 months ago #
Hi Ian,
Do you have a .htaccess file set up correctly? If you're using pretty permalinks you need to have this.
it should contain something like this
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
and be in the root of your site folder structure.