MIF_E31232303/storage_link.php

10 lines
248 B
PHP

<?php
$targetPath = __DIR__ . '/storage/app/public';
$linkPath = __DIR__ . '/public/storage';
if (!file_exists($linkPath)) {
symlink($targetPath, $linkPath);
echo "Storage link created!";
} else {
echo "Storage link already exists!";
}