Hello friend,
i've index.php which has a link to index2.php
i create an .htaccess and added
Code:
Options +FollowSymLinks
RewriteEngine on RewriteRule ^example\.html$ index2.php
it works fine, when i cann /example.html it gives index2.php
Now for unicode lang such as arabic , russian , hebraw if we want index2.php be as مثال ( an arabic word ) then we write
Code:
Options +FollowSymLinks
RewriteEngine on RewriteRule ^مثال\.html$ index2.php
- it gives ( ANSI ) "Internal Server Error"
if i saved .htaccess as UTF, it gives also "Internal Server Error"
if i saved .htaccess as unicode, gives also "Internal Server Error"
if i saved .htaccess as UTF Without DOM it gives index.php and when i click on the links it gives can't find the page
so how it can be done ?
|