简体   繁体   中英

Laravel Routes not working 404 not found

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>

问题是htaccess被隐藏了,我不好,我将其从_htaccess修改为.htaccess,现在可以正常工作了。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM