I have a PHP-based newsstore system (MVC) in which each url triggers a controller that calls a view.
However in azure the corresponding view is not called while in xampp / apache the system works perfectly.
How do I configure access to the view from the controller within azure?
web.config code
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Clean URL" 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/{R:1}" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
PHP system URL in MVC: link
System Code Repository: link