Advertisement
raihaniqbal

MyWordpressRewriteRule

Apr 27th, 2011
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.93 KB | None | 0 0
  1. <rewrite>
  2.   <rules>
  3.     <rule name="Main Rule" stopProcessing="true">
  4.       <match url=".*"/>
  5.       <conditions logicalGrouping="MatchAll">
  6.         <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
  7.         <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
  8.       </conditions>
  9.       <action type="Rewrite" url="index.php"/>
  10.     </rule>
  11.     <rule name="wordpress - Rule 3" stopProcessing="true">
  12.       <match url="^" ignoreCase="false"/>
  13.       <conditions logicalGrouping="MatchAny">
  14.         <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false"/>
  15.         <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false"/>
  16.       </conditions>
  17.       <action type="None"/>
  18.     </rule>
  19.     <rule name="wordpress - Rule 4" stopProcessing="true">
  20.       <match url="." ignoreCase="false"/>
  21.       <action type="Rewrite" url="index.php"/>
  22.     </rule>
  23.   </rules>
  24. </rewrite>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement