Тестим плагин для автоматического изменения постоянных ссылок в WordPress

Собственно сам плагин – cyr to lat enhanced.

После установки еще нужно поправить web.config, я его заполнил так:
<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=”WordPress Rule” stopProcessing=”true”>
<match url=”.*” />
<conditions>
<add input=”{REQUEST_FILENAME}” matchType=”IsFile” negate=”true” />
<add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” negate=”true” />
</conditions>
<action type=”Rewrite” url=”index.php” />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.