404 Error on admin panel page for setup

I downloaded the livesite project and setup on localhost but when localhost/test.demo.de/panel 404 error then if i do my kirby’s admin panel show up plz help

I run my site in Wamp server
My PHP version is 8.0.26

my .htaccess file code

# Kirby .htaccess

AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/javascript text/javascript application/json


# rewrite rules
<IfModule mod_rewrite.c>



RewriteEngine On

#enable awesome urls. i.e.:
#http://yourdomain.com/about-us/team
#RewriteEngine on

# make sure to set the RewriteBase correctly
# if you are running the site in a subfolder.
# Otherwise links or the entire site will break.
#
# If your homepage is http://localhost/mysite
# Set the RewriteBase to: 
#



# block text files in the content folder from being accessed directly
RewriteRule ^content/(.*)\.(txt|md|mdown)$ error [R=301,L]

# block all files in the site folder from being accessed directly
RewriteRule ^site/(.*) error [R=301,L]

# block all files in the kirby folder from being accessed directly
RewriteRule ^kirby/(.*) error [R=301,L]


# make site links work
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php [L]

</IfModule>

# Additional recommended values
# Remove comments for those you want to use.
#
# AddDefaultCharset UTF-8
#
# php_flag short_open_tag on

Your URL localhost/test.demo.de/panel points to a directory test.demo.de in your webroot, where Kirby should be installed. Check if this matches your setup.