Hi Guys,
Could I have a little bit of help with this rewrite rule conversion to Hiawatha?
# BEGIN gCloud Storage plugin management
RewriteRule ^gCloud-dispatcher/(.*) /wp-content/plugins/wp-gCloud/gCloud-dispatcher.php?fileKey=$1 [QSA,L]
# END gCloud Storage plugin management
The Full .htaccess file is:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
# BEGIN gCloud Storage plugin management
RewriteRule ^gCloud-dispatcher/(.*) /wp-content/plugins/wp-gCloud/gCloud-dispatcher.php?fileKey=$1 [QSA,L]
# END gCloud Storage plugin management
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Thank you advance
Fred