Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 382 Bytes

笔记.md

File metadata and controls

16 lines (14 loc) · 382 Bytes
  • 验证器 php artisan make:request StoreBlogPost
  • 控制器 php artisan make:controller PostController --resource
  • Nginx ** 重写路由配置vhosts.conf
location / {
            index  index.html index.htm index.php;
            #autoindex  on;
        }
		if (!-e $request_filename)
  {
          rewrite ^/(.*)$ /index.php?/$1 last;        break;
  }