Hi. I’m using Kirby, which comes with a standard .htaccess file. I’ve enabled .htaccess through editing /etc/apache2/apache2.conf, but I think my .htaccess is not working. (I have enabled mod_rewrite with a2enmod rewrite.)
My folder structure is as follows:
|-/var
|-|-/www
|-|-|-/domain.com
|-|-|-|-.htaccess
|-|-|-|-index.php
|-|-|-|-/kirby
|-|-|-|-other (kirby) stuff
The relevant rewrite rules are:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^content/(.*)\.(txt|md|mdown)$ error [R=301,L]
RewriteRule ^site/(.*) error [R=301,L]
RewriteRule ^kirby/(.*) error [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^panel/(.*) panel/index.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php [L]
</IfModule>
I am getting a 403 error when visiting my site: cool-house.nl.
What should I change to make things work as intended? Should I place another .htaccess file in /var/www?
Many thanks in advance!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
If anyone else is having the same problem, I solved it by putting the configuration right into the apache config file, like so: