Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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>
share|improve this question
What do the logs show? – itsbruce Nov 14 '12 at 18:04
honestly, i'm a bit out of my league here. So not sure where I would go to look at the logs. I was kind of hoping that there would be an obvious syntax error in the rewrite code that would cause this problem. – ssaltman Nov 14 '12 at 18:22

closed as off topic by George Stocker Nov 18 '12 at 1:37

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

It's not going to work nicely unless you have access to the Apache httpd.conf, as you ideally need to add a new name based VirtualHost definition for your domain, with a document root of: ~wpfolder/

As to the 500 error, replace the following:

RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /~wpfolder/index.php [L]

with:

ErrorDocument 404 ~wpfolder/index.php
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.