[ adaxx @ 30.10.2016. 07:25 ] @
Treba mi pomoc pretvaranja/convert web.config u htaccess. Nisam bas iskusan sa pravilima servera, uglavnom radim dizajn. Moze li neko da mi pretvori ovaj KOD ispod u htaccess ? Hvala Code: <system.webServer> <rewrite> <rules> <rule name="RewriteRules" stopProcessing="true"> <match url=".*" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> <add input="{REQUEST_URI}" pattern="^/(api)" negate="true" /> </conditions> <action type="Rewrite" url="/index.html" /> </rule> </rules> </rewrite> </system.webServer> |