keystonecandle
Forum Replies Created
-
Forum: Installing WordPress
In reply to: post url showing blog/blog/…Hi Codie,
I didn’t exactly find the issue but and pretty confident that the reason I have /blog/blog/ is because of installing it with the “multisite” option.The first /blog/ is the main blog directory, the second blog is my actual blog. If I created a second blog and named the directory /article, then my urls would read /blog/article/
Someone who knows more, correct me if I am wrong but this seems like the logical explanation.
Forum: Installing WordPress
In reply to: post url showing blog/blog/…I think this might be the issue, it is in my wp-config file…
/* Multisite */
define(‘WP_ALLOW_MULTISITE’, true);
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, false);
define(‘DOMAIN_CURRENT_SITE’, ‘keystonecandle.com’);
define(‘PATH_CURRENT_SITE’, ‘/blog/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);Is it because I have the Multisite enabled? Is it required? My other blog uscandleco.com/wp/ don’t have this entire section in the wp-config and only has 1 wp/ in the permalink addresses.
Forum: Installing WordPress
In reply to: post url showing blog/blog/…So I checked my permalink settings and they look like this…
Default https://keystonecandle.com/blog/?p=123
Day and name https://keystonecandle.com/blog/blog/2014/04/06/sample-post/
Month and name https://keystonecandle.com/blog/blog/2014/04/sample-post/
Numeric https://keystonecandle.com/blog/blog/archives/123
Post name https://keystonecandle.com/blog/blog/sample-post/so where do I go to remove the second /blog/ from them. I have access to my .htaccess file and the config.php file but I’m not sure what to look for.