[Solved] 404 Error - even with "Post Name" URLs

pagu

New Member
Product pages will not show up and instead get a 404 page.

Is there something else that could cause this?

Thank you
 

pagu

New Member
[Solved]
Issue was with my apache configuration.

Make sure that your web directory is configured to allow the .htaccess file to be read.

<Directory /var/www/>

AllowOverride All <!— changed to this and links worked —>
#AllowOverride None <!— This configuration setting caused 404 Error pages when clicking links for products —>

</Directory>
 
Top