public_html/ test/ right/ file.json wrong/ file.json
例如示例.com/test/right/file.json是有效的url。
例如
example.com/test/right/file.json -> .../right/file.json example.com/test/blah/file.json -> .../wrong/file.json example.com/test/whatever/file.json -> .../wrong/file.json
我试过这样的方法:
RedirectMatch 301 ^/((?!right).*)$ http://example.com/test/wrong/file.json
你可能在找 ErrorDocument :
ErrorDocument
ErrorDocument 404 http://example.com/test/wrong/file.json
只允许 right/file.json
right/file.json
RedirectMatch 301 ^/(?!(right|wrong)/file\.json$) http://example.com/test/wrong/file.json