Advertisement
Guest User

web.config for php-mvc

a guest
Aug 30th, 2014
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.58 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3.     <system.webServer>
  4.         <rewrite>
  5.             <rules>
  6.                 <rule name="Rewrite to index.php">
  7.                     <conditions logicalGrouping="MatchAll">
  8.                         <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
  9.                         <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
  10.                     </conditions>
  11.                     <match url="^(.+)$"  />
  12.                     <action type="Rewrite" url="/index.php?url={R:1}"  appendQueryString="true" />
  13.                 </rule>
  14.             </rules>
  15.         </rewrite>
  16.     </system.webServer>
  17. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement