How you can create remote access for your team to your static site such as content writers?

I want a way to make sure not to lose WP users functionality. i am up to any suggestion but please guys i am not a developer as you so take it easy with me and try to be more descriptive as possible.

i am using static html output and Wamp. everything is up to date like php, mysql…etc.

Give them access to your WordPress.

Best way is probably to give access to WP (as @mulyadi said) and maybe secure the whole server behind Cloudflare Access ( https://www.cloudflare.com/teams/access/ )

okay, but if i give them, they won’t be able to access it because it’s a localhost not connected to the internet. any ideas on how to get them connected?

okay, thank you i’ll try it

For the case of a remote team who need access to the site, locally hosted WordPress stops being a viable option.

For this case, you’ll need a remotely accessible WordPress instance, so on some kind of hosting, whether you set it up yourself on an empty VPS or use a 1-click WordPress installer or any other kind of way to host WordPress remotely.

I usually refer to this as your “dev” server, where users go in and use WordPress as usual, but without it being seen by the public. When a user with authority to deploy the site is ready to (or on a schedule), you use WP2Static or other method to generate the static snapshot of your dev server’s current state and deploy it as a static site (to Netlify, S3 or other static site hosting option).

To keep your dev site secure, you should block everyone but your team from accessing it. Usually this is done with the help of a htpasswd file. You can usually find a method of how to do this by searching for “MYHOSTINGNAME http basic authentication” or contact their support desk.

Let me know any more questions about this