2.3 Upgrade broke mod_rewrite/friendly URLs
-
I’m on a shared hosting provider, and used the following .htaccess file for SEO / friendly URLs for the last 2 years – always worked perfectly:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !index.php
RewriteRule (.*) /index.php/$1 [L]
</IfModule>Ever since upgrading to 2.3, mod_rewrite stopped function properly. Although all the friendly URLs are outputted properly by WordPress, actually trying to visit any of them results in a “the server is redirecting the request for this address in a way that will never complete.”.
Anyone have any idea how to fix this? I guess the changes the dev team made to the Friendly URL writing section of wordpress has broken my .htaccess file ??
- The topic ‘2.3 Upgrade broke mod_rewrite/friendly URLs’ is closed to new replies.