如何在htaccess中重写阿拉伯语网址

How to rewrite arabic url in htaccess. I have create htaccess file it's working perfectly for english url but it is not working for arabic url. Acually i am developing project in two language english and arabic. For seo friendly url i am saving slug, It is running properly but in arabic it is not running

u can use :

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^([0-9]+)/([^/]+)/?$ page.php?id=$1 [NC,L]

and change the (page.php?id=$1) to feet your links


take a look on this : link

or this : link