WordPress Multisite with Wildcard Certificates not mapping correctly

It seems that I was getting wrong the virtual host configuration file to redirect all http requests to https This is my current working configuration: /etc/apache2/sites-available/a.com.conf <VirtualHost *:80> ServerAdmin [email protected] ServerName a.com ServerAlias *.a.com DocumentRoot /var/www/a.com/html ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined RewriteEngine on RewriteCond %{SERVER_NAME} =a1.a.com [OR] RewriteCond %{SERVER_NAME} =a.com RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent] </VirtualHost> … Read more

How to point domain to wordpress page

You need to add that folder path in the .htaccess, your .htaccess should be in the folder as well. # BEGIN WordPress RewriteEngine On RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase /my-page/ RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /my-page/index.php [L] # END WordPress

Getting WordPress to work inside a rails 3 application

I had a similar problem, but handled the VirtualHost configuration in a different way: Used an Apache mod_alias to redirect what for you is /home/blog/ to a path outside of /var/www/railsapp/public/ (e.g., /var/www/wordpress) Then, for that new hosted directory I had to declare PassengerEnabled off to avoid getting the standard rails error message. I’ve wrote … Read more

mamp pro virtual hosts with wordpress

have you already installed the WordPress database? if so, the rewrite rule is probably pulling from the WP_HOME, and WP_SITEURL settings.. you can override them in the wp-config.php using something like define(‘WP_HOME’,’http://’. $_SERVER[‘SERVER_NAME’]); define(‘WP_SITEURL’,’http://’. $_SERVER[‘SERVER_NAME’]); Also, check the actual redirect using curl $bash> curl -I http://hostname see if it’s actually doing a redirect, or if … Read more

Virtual HostX and MAMP not working with WordPress

You’re wanting to use MAMP, but VirtualHostX shows that Apple’s built-in Apache is running. You’ll need to stop it by running this command in a Terminal window… sudo apachectl stop Then, start MAMP using their control panel and try again. Also, make sure “MAMP” is set as your “Default Web Server” in VirtualHostX’s Preferences window.