how to write web.config for wordpress on iis with non latin url -
how to write web.config for wordpress on iis with non latin url -
i using wordpress wirh permalink construction (/%year%/%monthnum%/%day%/%postname%/) on iis server.
the issue non-latin characters malayalam.
i wrote web.config follows,
<?xml version="1.0" encoding="utf-8"?> <configuration> <system.web> <httpruntime requestvalidationmode="2.0" requestpathinvalidcharacters="" relaxedurltofilesystemmapping="true" allowrestrictedchars="1" urlsegmentmaxlength="2048" /> <pages validaterequest="false" /> </system.web> <system.webserver> <security> <requestfiltering allowdoubleescaping="true" /> </security> <rewrite> <rules> <rule name="wordpress 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?page={r:0}" /> </rule> </rules> </rewrite> </system.webserver> </configuration>
posts page goes date archive.how prepare this?
wordpress url iis web-config non-latin
Comments
Post a Comment