Logo Informatizzati

Ho notato che con ispconfig ci sono dei problemi nel gestire gli url SEF (permalink) di wordpress.
Per risolverli è bastato inserire queste regole nel file del virtual host di apache e togliere l'htaccess generato da wordpress
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /
#RewriteRule ^index\.php$ - [L]
#per evitare che anche mysqladmin e la pagina amministrativa di wordpress venissero redirezionate
RewriteCond %{REQUEST_URI} !^/(wp\-admin|mysqladmin).*$
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

Commenti offerti da CComment