Installing wordpress in subfolder
-
I’m using wordpress in an azure app service, i created the following folder hierarchy:
├───AzureProject
….└─── wordPressProject
….└─── index.html
Because i want the index.html to have the https://mywebsite.com url and the wordpress project to be https://mywebsite.com/wordPressProjectThe wp-config looks like:
define('WP_HOME', 'https://mywebsite.com/wordPressProject'); define('WP_SITEURL','https://mywebsite.com/wordPressProject'); define('WP_CONTENT_URL', 'https://mywebsite.com/wordPressProject/wp-content');
everything works like normal, except that even if i can see the posts i can’t open them. i get: “The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.”
what am i missing?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Installing wordpress in subfolder’ is closed to new replies.