top of page

Enabling Permalinks in Windows Server for WordPress

  • Writer: سُلَيْمَان بْن دَاوُوْد
    سُلَيْمَان بْن دَاوُوْد
  • Jan 5, 2025
  • 1 min read

In fact Windows server do not support mod_rewrite so we need to create a web.config file and place it in root directory of WordPress installation the structure would look like follows


<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Main Rule" 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" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

Recent Posts

See All
Securing a VPS with some Ways

Change the Default SSH Port maybe to something like 27765 which is difficult to guess Disable Root Login Using SSH Keys(Public Key)...

 
 
 

Comments


© 2020 by syednazrulhassan

bottom of page