Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ファイルをリクエストする必要がありますwww.myserver.de/file%.pdf。ファイルが存在し、名前を変更したコピーの要求が機能しwww.myserver.de/file.pdfます。
www.myserver.de/file%.pdf
www.myserver.de/file.pdf
これは予想される動作ですか?
%はURLエスケープシーケンスの文字です。単一の%記号にデコードする%25を使用してみてください。
%はURLで特別な意味を持つため、名前に%sが含まれるファイルを参照するには、%をエスケープする必要があります。
www.myserver.de/file%25.pdf代わりに試してください。
www.myserver.de/file%25.pdf