如何強制所有 domain.tld 和www.domain.tld為https://domain.tld?我能夠接近。如果我通過注釋行取消注釋,它將強制執行所有內容,但無法訪問我的靜態檔案夾中的所有內容。
runtime: php74
env: standard
entrypoint: serve public/index.php
handlers:
#- url: /.*
# script: auto
# secure: always
# redirect_http_response_code: 301
- url: /static
static_dir: static
uj5u.com熱心網友回復:
你需要這個:
runtime: php74
env: standard
entrypoint: serve public/index.php
handlers:
- url: /static
static_dir: static
- url: /.*
script: auto
secure: always
redirect_http_response_code: 301
順序很重要,因為使用了第一個匹配規則。
轉載請註明出處,本文鏈接:https://www.uj5u.com/qiye/393143.html
