views:

78

answers:

2

I need to request a file www.myserver.de/file%.pdf . The file exists and requesting the renamed copy www.myserver.de/file.pdf works.

Is this expected behaviour?

A: 

% has a special meaning in URLs, so you need to escape it in order to refer to files with %s in their names.

Try www.myserver.de/file%25.pdf instead.

ctford
+1  A: 

% is the character for URL escape sequences. Try using %25 which decodes to a single % sign.

Jan Krüger