0

I have a wordpress website that I deployed on IIS the website had a problem earlier that arabic names for posts and categories was not working and after a lot of search I found an answer on stackoverflow that advice me to add those two lines in my wp-config.php file

if ( isset($_SERVER['UNENCODED_URL']) ) {
$_SERVER['REQUEST_URI'] = $_SERVER['UNENCODED_URL'];}

and thankfully it works for posts and categories , but the same problem is still happen in images in arabic and all these images are not shown in my website

Amira Elsayed Ismail
  • 9,216
  • 30
  • 92
  • 175

1 Answers1

0

Make sure your WordPress page contains below code:

<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">

Below is an example of HTML page:

enter image description here

enter image description here

Jalpa Panchal
  • 8,251
  • 1
  • 11
  • 26