找不到工作的Laravel Routes 404

I change my pc and install lamp on Windows 10 WSL.The main index works / but the routes is not. Here is my virtual host file.

<VirtualHost 127.0.0.2:80>
    DocumentRoot /var/www/devroot/lara/panel/public
    DirectoryIndex index.php
    <Directory "/var/www/devroot/lara/panel/public">
        Options All
        AllowOverride All
        Order Allow,Deny
        Allow from all
    </Directory>
</VirtualHost>

And Here is the htaccess from project

<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews -Indexes
    </IfModule>

    RewriteEngine On

    # Handle Authorization Header
    RewriteCond %{HTTP:Authorization} .
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

    # Redirect Trailing Slashes If Not A Folder...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} (.+)/$
    RewriteRule ^ %1 [L,R=301]

    # Handle Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>

The Error when i access a route link.

Not Found

The requested URL /lara/panel/public/admin was not found on this server.
Apache/2.4.18 (Ubuntu) Server at localhost Port 80

Your VHost Settings are incorrect. Laravel default serves to localhost:8000. You see it as output after using php artisan serve. Try this:

<VirtualHost *:80>
    DocumentRoot /var/www/devroot/lara/panel/public
    DirectoryIndex index.php
    <Directory "/var/www/devroot/lara/panel/public">
        Options All
        AllowOverride All
        Order Allow,Deny
        Allow from all
    </Directory>
</VirtualHost>

The Problem was the htaccess was hidden my bad i modified it to .htaccess from _htaccess and now it's working.