I am using get simple cms on my ISS server (actually have to use ISS) and there is a plugin to enable rewrite on ISS with web.config.
web.config source:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="GetSimple Fancy URLs" 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="?id={R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
but my CMS on both main folder / and sub folder /en such as:
http://domainname.com/ (main cms) http://domainname.com/en/ (another cms on subfolder)
with the web.config above, main cms working successfully but the cms on subfolder not working (gives 404 as before did)
how can I implement that subfolder rule to web.config file? so 2 cms working successully.
I tried to place same web.config file under subfolder (/en) but it did not work.
Thanks a lot,