1and1 http 500 errors
-
I’m at the end of my rope. 1and1, my hosting company, has done something (they won’t say what) to their backend that’s giving my site http 500 server-side errors for long stretches — a couple of hours at a time. Their tech support is typically clueless.
From what I’ve gleaned, it seems like my .htaccess settings are now conflicting with whatever 1and1’s done. I can’t tell what it is or what I should fix. If anyone can offer advice, I’d appreciate.
I’m running WP 1.2 (don’t want to upgrade at this point unless it’s absolutely necessary). Here’s my .htaccess content:
RewriteEngine On
RewriteBase /
RewriteRule ^archives/category/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wordpress/wp-feed.php?category_name=$1&feed=$2 [QSA]
RewriteRule ^archives/category/?(.*) /index.php?category_name=$1 [QSA]
RewriteRule ^archives/author/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wordpress/wp-feed.php?author_name=$1&feed=$2 [QSA]
RewriteRule ^archives/author/?(.*) /index.php?author_name=$1 [QSA]
RewriteRule ^archives/([0-9]{4})?/?([0-9]{1,2})?/?([0-9]{1,2})?/?([_0-9a-z-]+)?/?([0-9]+)?/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&page=$5 [QSA]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([_0-9a-z-]+)/(feed|rdf|rss|rss2|atom)/?$ /wordpress/wp-feed.php?year=$1&monthnum=$2&day=$3&name=$4&feed=$5 [QSA]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([_0-9a-z-]+)/trackback/?$ /wordpress/wp-trackback.php?year=$1&monthnum=$2&day=$3&name=$4 [QSA]
RewriteRule ^feed/?([_0-9a-z-]+)?/?$ /wordpress/wp-feed.php?feed=$1 [QSA]
RewriteRule ^comments/feed/?([_0-9a-z-]+)?/?$ /wordpress/wp-feed.php?feed=$1&withcomments=1 [QSA]
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^https://(.*).populationstatistic.(.*)/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^https://populationstatistic.(.*)/.*$ [NC]
RewriteRule (.*.(gif|jpg|avi|mpg)$) https://populationstatistic.com/images/rewrite.gif [R,NC]
- The topic ‘1and1 http 500 errors’ is closed to new replies.