Selam üstadlar, nasılsınız iyisiniz umarım, size sormak istediğim bir şey var, bana yardımcı olur musunuz ?

Sorum şu;
Localhost üzerinden Bir site ve admin paneli yapıyorum, dosya yapım şu şekilde
localhost/web/
localhost/web/admin
Şimdi sidebar şurada localhost/web/admin/includes/sidebar.php

Sorun şu
Örneğin Localhost/web/admin/blog/blog_list.php içine girdiğim zaman sidebardan Ana Sayfaya tıklayınca Şu şekilde oluyor http://localhost/web/admin/blog/blog/dashboard.php Bir türlü şu sorunu çözemedim.

// Menü öğelerini tanımlayan bir dizi oluşturun
$menu_items = [
    [
        'icon' => 'fas fa-home',
        'text' => 'Theme Settings',
        'link' => '/homesettings.php'
    ],
    [
        'icon' => 'fas fa-bars',
        'text' => 'Blog',
        'submenu' => [
            [
                'text' => 'Blog List',
                'link' => 'blog/blog_list.php'
            ],
            [
                'text' => 'Add Blog',
                'link' => 'blog/add_blog.php'
            ]
        ]
    ],
    // Diğer menü öğeleri
    [
        'icon' => 'fas fa-thumbtack',
        'text' => 'Pinned Items',
        'link' => '../pinned_items.php'
    ],
    [
        'icon' => 'fas fa-heart',
        'text' => 'Following',
        'link' => '../following.php'
    ],
    [
        'icon' => 'fas fa-chart-line',
        'text' => 'Trending',
        'link' => '../trending.php'
    ],
    [
        'icon' => 'fas fa-fire',
        'text' => 'Challenges',
        'link' => '../challenges.php'
    ],
    [
        'icon' => 'fas fa-magic',
        'text' => 'Kategoriler',
        'link' => '../admin/blog/add_category.php'
    ],
    [
        'icon' => 'fas fa-gem',
        'text' => 'Blog',
        'link' => '../blog/edit.php'
    ],
    [
        'icon' => 'fas fa-cog',
        'text' => 'Ayarlar',
        'link' => '../ayarlar.php'
    ]
];