I'm trying to do a somewhat simple thing with no luck - i want to display hebrew/arabic characters in my Url.
For example i want the url to display a file named: aאm.php
So i've percent encoded the middle utf8 character and the result is: a%D7%90m.php Iv'e uploaded a%D7%90m.php to my server (apache) and tried to request the pages wwww.mydomain.com/a%D7%90m.php & wwww.mydomain.com/aאm.php but my server responded:
The requested URL /a%D7%90m.php was not found on this server.
So i tried to upload aאm.php (without the percent encoding) instead but again no luck when browsing wwww.mydomain.com/a%D7%90m.php & wwww.mydomain.com/aאm.php.
I'm definitely missing something here.
DirectoryIndexand seeing what URLs Apache itself serves on that page – Pekka Feb 11 '11 at 0:05%25is the hex escape for%. This means you've use the escaped name for the filename. You need to create the file with the real character in its name. – Marcelo Cantos Feb 11 '11 at 0:19