From 5670e3721dfd168ac6be210ce43146c75482850c Mon Sep 17 00:00:00 2001 From: Marvin <51963571+d3v3lop3rDE@users.noreply.github.com> Date: Wed, 24 Jun 2026 03:37:18 +0200 Subject: [PATCH] enabling rewirte module in apache (#15360) The rewrite module is essential for beautiful domains like "https://myexample.com/problematicSite". With the currently provided setup these domains end up in a 404, as apache is not rewriting the domain. --- install/wordpress-install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install/wordpress-install.sh b/install/wordpress-install.sh index 5cae303fe..52a14c7d0 100644 --- a/install/wordpress-install.sh +++ b/install/wordpress-install.sh @@ -47,6 +47,7 @@ cat </etc/apache2/sites-available/wordpress.conf EOF $STD a2ensite wordpress.conf $STD a2dissite 000-default.conf +$STD a2enmod rewrite systemctl reload apache2 msg_ok "Created Services"