How to install bitnami wordpress inside a subdirec

2019-08-16 03:34发布

I have a website hosted on www.example.com that is a Bitnami application. I want to install another bitnami wordpress on the same server that should be accessible on www.example.com/blog. How to do this?

2条回答
爷、活的狠高调
2楼-- · 2019-08-16 04:13

I think the best option to what you need is to use the Multisite Plugin (https://wordpress.org/plugins/multisite-plugin-manager/). Bitnami has already a shipped WP Multisite application

查看更多
神经病院院长
3楼-- · 2019-08-16 04:39

You can install more than one WordPress module on a Bitnami stack. Download it from the Bitnami website, and install it using --wordpress_instance_name NEW_BLOG_NAME option.

First, download the module, and then run the download file with a special parameter.

Windows

shell> ./bitnami-wordpress-VERSION-module-windows-installer.exe --wordpress_instance_name NEW_BLOG_NAME

Linux

$ chmod a+x bitnami-wordpress-VERSION-module-linux-x64-installer.run
$ ./bitnami-wordpress-VERSION-module-linux-x64-installer.run --wordpress_instance_name NEW_BLOG_NAME

Mac OS X

$ hdiutil mount bitnami-wordpress-VERSION-module-osx-x86_64-installer.dmg
$ /Volumes/WordPress\ Module\ VERSION/BitNami\ WordPress\ Module.app/Contents/MacOS/installbuilder.sh --wordpress_instance_name NEW_BLOG_NAME

Once you have the module installed, you will be able to access it through http://localhost/NEW_BLOG_NAME

查看更多
登录 后发表回答