# 伪静态规则
## IIS7.5伪静态规则
```
<?xml version="1.0" ?>
<rules>
	<rule enabled="true" name="WPurls_rewrite" stopProcessing="true">
		<match url=".*"/>
		<conditions logicalGrouping="MatchAll">
			<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
			<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
		</conditions>
		<action type="Rewrite" url="index.php/{R:0}"/>
	</rule>
</rules>
```
## Nginx
## Apache
                    
        
    