If you need to install wordpress in a subfolder and activate permalink you need edit the file subfolder/.htaccess file as follow


<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /subfolder/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /subfolder/index.php [L]
</IfModule>

This page has been readed 19870 times

Leave a Reply

Your email address will not be published. Required fields are marked *