I am created a sub domain www.support.rdmac.org.uk which works fine except that it has no styling. Having looked at several forums it seems like the browser needs to be directed towards the domain name for .css files.
At present it is:
"link rel="stylesheet" type="text/css" media="all" href="http://www.support.rdmac.org.uk/wp-content/themes/twentyten/style.css" /".
I think it should be:
"link rel="stylesheet" type="text/css" media="all" href="http://www.rdmac.org.uk/wp-content/themes/twentyten/style.css" /"
I have created an .htaccess file in my subdomain folder and used the following code
RewriteEngine on
RewriteRule ^themes/twentyten/style.css$ http://www.rdmac.org.uk/wp-content/themes/twentyten/style.css[L]
This is not working. Can anyone help?
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
Should I have 2 .htaccess files? - user3480537