I got emails from users asking me why goCodes in their Wordpress did not work? GoCodes is a very useful wordpress plugIn and all IMers should know how to use it.
99% of the times wht it did not work is that they forgot to add the following to their .htaccess file (under WordPress installation root):
Code:
RewriteEngine On | |
RewriteRule ^go/([A-Za-z0-9]+)/?$ /index.php?gocode=$1 [L,R] |
Before the following lines:
Code:
# BEGIN WordPress | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule . /index.php [L] | |
</IfModule> |
Trackback URL (right click and copy shortcut/link location)
This post has 2143 feedbacks awaiting moderation...