Antworten

WordPress Permalinks unter Windows

Verwenden Sie folgende web.config modifikation, um Permalinks bei Wordpress auch unter Windows nutzen zu können.

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3. <system.webServer>
  4. <rewrite>
  5. <rules>
  6. <rule name="Main Rule" stopProcessing="true">
  7. <match url=".*" />
  8. <conditions logicalGrouping="MatchAll">
  9. <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
  10. <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
  11. </conditions>
  12. <action type="Rewrite" url="index.php/{R:0}" />
  13. </rule>
  14. </rules>
  15. </rewrite>
  16. <defaultDocument>
  17. <files>
  18. <clear/>
  19. <add value="index.php"/>
  20. </files>
  21. </defaultDocument>
  22. <httpErrors errorMode="Detailed" />
  23. </system.webServer>
  24. </configuration>

Tip:

Grundsätzlich empfehlen wir jedoch, Wordpress nicht unter Windows sondern auf einem Linux-Hosting zu verwenden!

Link zu diesem Artikel: https://support.hostfactory.ch/artikel/wordpress-permalinks/
URL in Zwischenablage kopieren