This is failing.
Need to redirect ip and subfolder to domain.
entire site is located in [ipaddress]/~wpfolder/
mydomain.com points to [ipaddress]
Getting 500 server error on site.
This is the .htaccess file
Please help
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^111\.22\.33\.444
RewriteRule (.*) http://www.mydomain.com/$1 [R=301,L]
RewriteBase /~wpfolder/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /~wpfolder/index.php [L]
</IfModule>