Multilingualpress configuration on Nginx server
-
Hello,
I’m trying to set up and install MLP 3.4 on my WordPress website. The thing is that I’m currently using an Nginx server, while the installation guide suggests to edit the .htaccess file, which I don’t have.
Can you please help me and support during the installation? How can I add this code snippet on an Nginx server? Is there a specific file to edit on a specific line?
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^(.*\.php)$ $1 [L]
RewriteRule . index.php [L]Thank you
- The topic ‘Multilingualpress configuration on Nginx server’ is closed to new replies.