diff --git a/public/index.html b/public/index.html
index a6f194eb1fd58b8f89b6a63f0b24c6da3fbfb537..7069b03590e8eb977a96f40dd81ea5856f62cf51 100644
--- a/public/index.html
+++ b/public/index.html
@@ -48,7 +48,7 @@ async function activateXR() {
 
     const loader = new THREE.GLTFLoader();
     let reticle;
-    loader.load("https://transfer.hft-stuttgart.de/pages/32esla1mpg/webarTTP/media/reticle.gltf", function(gltf) {
+    loader.load("https://transfer.hft-stuttgart.de/gitlab/32esla1mpg/webarTTP/-/blob/master/media/reticle.gltf", function(gltf) {
       reticle = gltf.scene;
       reticle.visible = false;
       scene.add(reticle);
@@ -58,7 +58,7 @@ async function activateXR() {
     });
 
     let model;
-    loader.load("https://transfer.hft-stuttgart.de/pages/32esla1mpg/webarTTP/media/sunflower.gltf", function(gltf) {
+    loader.load("https://transfer.hft-stuttgart.de/gitlab/32esla1mpg/webarTTP/-/blob/master/media/sunflower.gltf", function(gltf) {
       model = gltf.scene;
       console.log("Model loaded successfully");
     }, undefined, function(error) {