Subdomain in wordpress without multisite configuration.
-
Hello everyone, I have a big problem with subdomain on my wordpress based site. I am using WP dubdomains (revisited) v 0.9 with page based customisation.
My wordpress version is: 3.9.1
I have made 4 categories as subdomain with the same name as parent pages of other pages.
So top level parent pages are setup as subdomain and all other are child of them.
Example link:
https://questus.info.pl/cim
is changed to:
https://cim.questus.info.pl
and this is working.But for children pages like:
https://questus.info.pl/cim/kwalifikacje-cim/where should be:
https://cim.questus.info.pl/kwalifikacje-cim/I am getting 404 error.
I have made a small modification in plugin, but also links like:
https://cim.questus.info.pl/cim/kwalifikacje-cim/
doesn’t work correctly.Also when I am logged in and I go to subdomain page a top bar is disappearing.
When I am in debug mode there is no information about this bug.I have made subdomain on my host panel ofcourse, and this is my .htaccess file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Becouse of specific requirements from my client I cannot make multisite wordpress.
Did anyone have some idea what is wrong with links?
- The topic ‘Subdomain in wordpress without multisite configuration.’ is closed to new replies.