Antworten
WordPress Permalinks unter Windows
Verwenden Sie folgende web.config modifikation, um Permalinks bei Wordpress auch unter Windows nutzen zu können.
- <?xml version="1.0" encoding="UTF-8"?>
- <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/{R:0}" />
- </rule>
- </rules>
- </rewrite>
- <defaultDocument>
- <files>
- <clear/>
- <add value="index.php"/>
- </files>
- </defaultDocument>
- <httpErrors errorMode="Detailed" />
- </system.webServer>
- </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