Title: [resolved]Windows to Linux server&#8230;file problem
Last modified: August 21, 2016

---

# [resolved]Windows to Linux server…file problem

 *  [Rahul Rajoria](https://wordpress.org/support/users/rahul-rajoria/)
 * (@rahul-rajoria)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/resolvedwindows-to-linux-serverfile-problem/)
 * FIle:WEB.CONFIG
 *     ```
       <?xml version="1.0" encoding="UTF-8"?>
       <configuration>
         <system.webServer>
           <rewrite>
             <rules>
       	<rules>
       		<clear />
       			<rule name=”uploads” stopProcessing=”true”>
       			<match url=”\wp-content\.*” />
       			<conditions logicalGrouping=”MatchAll” />
       	</rule>
                   <rule name="wordpress" patternSyntax="Wildcard">
                       <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"/>
                   </rule></rules>
           </rewrite>
         </system.webServer>
       </configuration>
       -----------------------------
       solution
   
       <?xml version=”1.0″ encoding=”UTF-8″?>
       <configuration>
       <system.webServer>
       <rewrite>
       <rules>
       <clear />
       <rule name=”uploads” stopProcessing=”true”>
       <match url=”\wp-content\.*” />
       <conditions logicalGrouping=”MatchAll” />
       </rule>
       <rule name=”wordpress” patternSyntax=”Wildcard”>
       <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” />
       </rule>
       </rules>
       </rewrite>
       </system.webServer>
       </configuration>
       ```
   
 * _[Moderator Note: Please post code & markup between backticks or use the code
   button. Your posted code may now have been permanently damaged by the forum’s
   parser.]_

The topic ‘[resolved]Windows to Linux server…file problem’ is closed to new replies.

## Tags

 * [IIS server](https://wordpress.org/support/topic-tag/iis-server/)
 * [permalink](https://wordpress.org/support/topic-tag/permalink/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 0 replies
 * 1 participant
 * Last reply from: [Rahul Rajoria](https://wordpress.org/support/users/rahul-rajoria/)
 * Last activity: [12 years, 5 months ago](https://wordpress.org/support/topic/resolvedwindows-to-linux-serverfile-problem/)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
