Well, there’s some progress. The current iteration looks like this:
RewriteEngine On
RewriteBase /sites/test-wp/
RewriteRule ^go/([A-Za-z0-9]+)/?$ /index.php?gocode=$1 [L]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /sites/test-wp/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /sites/test-wp/index.php [L]
</IfModule>
# END WordPress
For some reason it’s bouncing requests to ntugo.com/index.php?gocode=$1 instead of ntugo.com/sites/test-wp/index.php?gocode=$1
Why’s that?