This seems to be on Nginx @codiergott ?
This might be useful:
Installing on Nginx
in the "server" section in the Nginx configuration file, add the following (instead of using the .htaccess file):
location / { index index.php;rewrite ^/blog-page-([^-]*)$ /?page=$1&p=blog break; rewrite ^/blog-([^-]*)+? /?d=$1&p=blog break; if (!-e $request_filename){ rewrite ^(.*)$ /index.php?p=$1 last; } }
But a more recent discussion with how to install the correct PHP requirements happened over here:
Let's see if those help!