Hey,
I am trying to set up a grav Server and followed the official Tutorial. My home-site is working but when clicking on the typography-site on the demo, I get a 404 Error. I followed the Toubleshooting Guide and found out that my Rewrite seems to be not working.
I replaced the .htaccess with:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^.*$ htaccess_tester.php
</IfModule>
and visited mysite/test and got the 404 Error.
I checked if the rewrite module is running with ‘httpd -M’ and it is listed as ‘rewrite_module (shared)’.
My Directory section in the httpd.conf is as followed:
<Directory />
AllowOverride All
# Require all denied
RewriteEngine On
Options FollowSymLinks
</Directory>
I am not exactly sure if the last two lines are correct as I didn’t quite understood the AllowOverride section of the Troubleshooting Guide. The outcommented line was preconfigured in the file.
I am using the up-to-date versions of apache lounge and php for windows.
Does anybody has an idea what could still cause the Problem?
I hope you can help me and thanks in regard
David