目录

Nginx

HTTP response codes

HTTP response codes - HTTP|MDN
HTTP 响应代码 - HTTP|MDN

HTTP Rewrite HTTPS

Converting rewrite rules - nginx.org

server {
    listen       80;
    server_name  example.org;
    return       301 https://www.example.org$request_uri;
}

PHP 单入口

Laravel 8 中文文档

.nginx.conf
location / {
    try_files $uri $uri/ /index.php?$query_string;
}

Vue Router

HTML5 History 模式 | Vue Router

.ngnix.conf
location / {
    try_files $uri $uri/ /index.html;
}