[wp-testers] rewrite issues with 1&1 hosting.

Krusty Ruffle krustyruffle at rustykruffle.com
Tue Nov 4 15:56:03 GMT 2008


As soon as I enabled Permalinks I lost all css on the admin panels, and the
public pages gave 500 internal server errors.

Changing this:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase Array
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . Arrayindex.php [L]
</IfModule>

# END WordPress

To this:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

Fixed it right up... ( I copied that from a version 2.6.3 .htaccess file.)
Unfortunately, this is on a shared hosting plan so I have no access to
apache's error logs...

Just thought somebody might like to know :)


More information about the wp-testers mailing list