על מנת להפעיל הפעלת Rewrite /Permalinks לכתובות URL בעברית בWordpress, יש לבצע את השינויים הבאים.
יש להוסיף לקובץ wp-config.php את הקוד הבא בסוף הקוד:
if (isset($_SERVER['UNENCODED_URL']))
$_SERVER['REQUEST_URI'] = $_SERVER['UNENCODED_URL'];
יש להוסיף לקובץ ה web.config את הקוד הבא בתגית system.webServer:
<rewrite>
<rules>
<rule name="Main Rule" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:0}" />
</rule>
</rules>
</rewrite>