i have a .htaccess file with the following code:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule /(.*)\.html article.php?title=$1
to convert my url from article.php?title=xxxx
to article/xxxx.html
url contains arabic and english...
so when i enter this url
article/تسريب-أولى-صور-هاتف-LG-G4s-الجديد.html
its working fine but when i visit another article with the url
article/CloneApp-نقل-برامجك-المفضلة-بكامل-إعدادتها-من-ويندوز-إلى-اخر-نقرة-زر.html
not working: Objet non trouvé!
what is the problem (different between them?) why the first works and the second not!
thanks alot in advance.