Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 501 Bytes

Redirect.md

File metadata and controls

23 lines (16 loc) · 501 Bytes

Ubuntu 24.04♥中的TYPO3 —— 页面重定向

修改站点配置文件/etc/nginx/conf.d/domain.tld.conf

server {
    listen 80;
    server_name domain.tld;
    return 301 http://www.domain.tld$request_uri;
}

server {
    listen 80;
    server_name www.domain.tld;
    ...
}

重启Nginx

service nginx restart

实际配置以官方文档为准

<< 返回