Blogger Information
Blog 14
fans 0
comment 0
visits 12054
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
laravel 本地集成开发环境,路由访问 Not Found The requested URL /home/1 was not found on this server.
念旧
Original
1524 people have browsed it

问题描述:添加根目录以外的其他路径无法访问,提示:

以上问题解决:

1、public目录下新建一个

public\.htaccess

2、填入下面内容

  1. <IfModule mod_rewrite.c>
  2. <IfModule mod_negotiation.c>
  3. Options -MultiViews
  4. </IfModule>
  5. RewriteEngine On
  6. # Redirect Trailing Slashes...
  7. RewriteRule ^(.*)/$ /$1 [L,R=301]
  8. # Handle Front Controller...
  9. RewriteCond %{REQUEST_FILENAME} !-d
  10. RewriteCond %{REQUEST_FILENAME} !-f
  11. RewriteRule ^ index.php [L]
  12. </IfModule>
3、重启本地集成开发环境。问题解决
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post