Installing wordpress in subdirectory
-
Hello , I have tried reading and reading and reading about creating and installing wordpress as a subdirectory
I currently have a html website installed under modgraphic dir
I installed wordpress in modgraphic/blog
I updated the general settings to match modgraphic/blog for both
I have updated the permalinks and htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>and I updated the index.php file to have
require(‘./blog/wp-blog-header.php’);
when I visit https://www.modgraphic.com/blog I see and empty folder,
Now there is an empty folder on the server parallel with modgraphic
How or what do I have to do so that the url
modgraphic/blog points at the proper folder
any help is much appreciated! ??
- The topic ‘Installing wordpress in subdirectory’ is closed to new replies.