Hi,
One of my clients get:
"500 Internal Server Error"
After an upgrade from PHP 5.2 to 5.3 (with PHP-FPM).
It's most likely related to the htaccess.
Example rules:
Anyway knows the fix? Thanks!
One of my clients get:
"500 Internal Server Error"
After an upgrade from PHP 5.2 to 5.3 (with PHP-FPM).
It's most likely related to the htaccess.
Example rules:
RewriteCond %{HTTP_HOST} ^www.domain.com$
RewriteCond %{REQUEST_URI} !^/wordpress/
RewriteRule (.*) /domain.com/$1 [last]
RewriteCond %{HTTP_HOST} ^wordpress$
RewriteCond %{REQUEST_URI} !^/domain.com/
RewriteRule (.*) /wordpress/$1 [last]
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule>
Anyway knows the fix? Thanks!