After activating the plugin and adding the code snippet to my configuration file, I get the following message, even though my htaccess was temporarily made writable for the installation. (I believe that when installing on another site, htaccess was automatically updated for me.. I"m not certain why it is not doing that now).
You must have BEGIN and END markers in /usr/www/users/usmissio/news/.htaccess for the auto update to work. They look like this and surround the main WordPress mod_rewrite rules: # BEGIN WordPress RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPress
My current htaccess file looks like this.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /news/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /news/index.php [L]
</IfModule>
It is unclear to me what parts of the first begin and end code I should insert and where I should put it. What part goes ahead of my code and what comes at the end (if it is a wrapper)? These instructions are not clear to someone like myself who is not all that comfortable with the code.