Hello peeps ๐๐ผ
As anyone in the Dev community successfully added a Wordpress blog to a subfolder in a rails app?
myapp.com (rails)
myapp.com/blog (wordpress)
I have done a few rounds of googling but havenโt yielded any confident results.
I am thinking that page rules within Cloudflare might be the answer but apparently Wordpress likes to be at the root domain or subdomain.
I know I could use Rails as the blog but I canโt be ๐โsed atm as I can just use the huge Wordpress plugin systems for stuff I need quickly.
Thanks ๐ and in return I can do portraits of anyone that can shed clear informations on said subject.
Top comments (5)
You could try the following
Thanks, is this in a config file?
It is the .htaccess file inside of the root folder of WordPreas
I had such experience using Laravel app and for blog WordPress app. To make it possible I used nginx web server
The idea is pretty simple:
Thanks!