1

I want to use a Wordpress in my laravel installation. For this i put it on /public/blog/*.

The goal is to access WP by https://mywebsite.test/blog/

The problem is : i can't reach my wordpress installation. I'm using Valet on local. How to configure valet to let me access to the subfolder ? Is it possible ?

Thanks

djoo
  • 685
  • 1
  • 7
  • 24

1 Answers1

0

Try this:

mkdir mywebsite
cd mywebsite
valet link
valet secure
mkdir blog
cd blog <== install wordpress here

This way it's inside your parked/linked domain.

vanderbake
  • 356
  • 2
  • 11