• I’ve created the subdomain themes.mywebsite.com and installed wordpress fine but it gives the theme 404. Same if I make the page /themes on a non-subdomain install.

    Is there something in wordpress that doesn’t allow that folder to be used or is this my problem? If it’s my issue I can carry on working it out, but I wanted to check first if this was a known thing that you can’t use that folder or page name.

    Thanks in advance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Check your .htaccess file of the subfolder.

    try `# BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /sub-folder/
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /sub-folder/index.php [L]
    </IfModule>

    # END WordPress

    Thread Starter dandotso

    (@dandotso)

    Thanks I’ll check, I forgot to add… I made and installed on theme.mywebsite.com with no issue at all. (dropped the s). That’s why I asked here, as it seemed particular.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘themes.mywebsite.com subdomain?’ is closed to new replies.