Buon giorno a tutti, ho questo codice htaccee
codice:
<IfModule mod_rewrite.c>
RewriteEngine on

RewriteRule ^/go/(.*)$ /go.php?url=$1 [R=301,L]

RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule .? http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]


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

</IfModule>

# END WordPress

e la parte che non riesco a far funzionare e'
codice:
RewriteRule ^/go/(.*)$ /go.php?url=$1 [R=301,L]
in pratica vorrei dato uin indirizzo www.sito.it/go/CODE che venisse richiamato lo script www.sito.it/go.php?url=CODE

potete darmi una mano?

grazie