Reputation: 1491
I have some photos with arabic names like 12345-الجزيرة-الجزيرة-الجزيرة-الجزيرة-12345.jpg
in a photos
folder and the browser returns not found error for http://domain.com/photos/12345-الجزيرة-الجزيرة-الجزيرة-الجزيرة-12345.jpg
. Could you please let me know how to solve this problem?
Upvotes: 1
Views: 429
Reputation: 45553
Have you set the default encoding of the apache web server?
Open the /etc/httpd/conf/httpd.conf and set:
AddDefaultCharset UTF-8
Open .htaccess and set:
IndexOptions +Charset=UTF-8
Upvotes: 2