By setting custom_base_url
in system.yaml (or Custom Base URL in the System Settings, in Admin), we can have Grav in a folder but have it run in the domain root.
Grav is installed in http://localhost:8080/grav-develop
but you want it to respond on http://localhost:8080
In system.yaml, set
custom_base_url: 'http://localhost:8080'
and set the session path to the new Grav site path,
session:
path: /
And in the domain root, set the redirect, e.g. with .htaccess:
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/grav-develop/
RewriteRule ^(.*)$ /grav-develop/$1
where grav-develop
is the subfolder where Grav is.
Grav is installed in http://localhost:8080/grav-develop
but you want it to respond on http://localhost:8080/xxxxx
In system.yaml, set
custom_base_url: 'http://localhost:8080/xxxxx'
and set the session path to the new Grav site path,
session:
path: /xxxxx
And in the new root folder, /xxxxx, set the redirect, e.g. with .htaccess:
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/grav-develop/
RewriteRule ^(.*)$ /grav-develop/$1
where grav-develop
is the sister subfolder where Grav is.
Found errors? Think you can improve this documentation? Simply click the Edit link at the top of the page, and then the icon on Github to make your changes.
Powered by Grav + with by Trilby Media.