Archive

Posts Tagged ‘headlesscms’

Install Directus on shared hosting

July 6, 2020 Leave a comment

Please refer attached file.

DirectUs has brought new version with node js and has put v8 on archive mode. You may want to refer it at https://github.com/directus/v8-archive and its tags can be found at https://api.github.com/repos/directus/v8-archive/tags

Directus setup on shared hosting

July 6, 2020 Leave a comment

To install Directus in a shared hosting you can add a .htaccess file with the following code, so every request to the root domain rewrite to the public/ directory without changing the path:

RewriteEngine on
RewriteCond %{REQUEST_URI} !^/public
RewriteRule ^(.*)$ /public/$1 [NC,L]