php - rewrite wordpress paramlink in web.config not working for secondary domain over IIS 8 -
wordpress sites hosted on iis 8 , 1 main domain , 1 domain lets : maindomain.com , anotherdomain.com physical path : acb/maindomain ( main domain ) , physical path : acb/maindomain/anotherdomain.com ( domain ) maindoman.com working paramlink structure. bellow maindoman.com/web.config file code <?xml version="1.0" encoding="utf-8"?> <configuration> <system.webserver> <rewrite> <rules> <!-- maindomain --> <rule name="maindomain" patternsyntax="wildcard"> <match url="*"/> <conditions> <add input="{request_filename}" matchtype="isfile" negate="true"/> <add input="{request_filename}" matchtype="isdirectory" negate="true"/> </conditions> <action type="rewrite...