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.

link|improve this question

1  
One trick worth trying might be activating a DirectoryIndex and seeing what URLs Apache itself serves on that page – Pekka Feb 11 '11 at 0:05
Thanks Pekka. it sees a%25D7%2590m.php (a 25 number was added to every percent) why is that? how can i fix this? – Tom Feb 11 '11 at 0:08
%25 is 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
Alright but when i do that, apache sees the page as "aàm.php" not "aאm.php" and even when i try to enter it i get "Not Acceptable" – Tom Feb 11 '11 at 0:24
feedback

1 Answer

up vote 0 down vote accepted

The solution was to set a mod rewrite in www.yoursite.com/the .htaccess, for example if you want your link to be:www.yoursite.com/عربية and file www.yoursite.com/arabic.php to actually handle the request behind the scenes then simply write this code in the .htaccess file:

RewriteEngine 
OnRewriteRule ^عربية$ arabic.php 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.