diff --git a/Setting-up-Dynamic-Map-with-Apache-httpd-under-Arch-Linux.md b/Setting-up-Dynamic-Map-with-Apache-httpd-under-Arch-Linux.md index 0ed867f..762ee12 100644 --- a/Setting-up-Dynamic-Map-with-Apache-httpd-under-Arch-Linux.md +++ b/Setting-up-Dynamic-Map-with-Apache-httpd-under-Arch-Linux.md @@ -17,14 +17,15 @@ Next, we must 'redirect' `/dynmap/up/` to dynmap's internal webserver. To do thi ```apache ... Alias /dynmap/tiles /opt/minecraft_server/tiles + + RewriteEngine on + RewriteRule /dynmap/up/(.*) http://localhost:8123/up/$1 [P,L] + Order allow,deny Allow from all - RewriteEngine on - RewriteRule /dynmap/up/(.*) http://localhost:8123/$1 [P,L] - Order deny,allow Allow from all