Remove public from URL
User remove public from silverstripe url /public Assistant Got it—this usually happens when your domain points to the project root instead of the Silverstripe webroot (`/public`). Here are the clean ways to remove `/public` from the URL. # Recommended (best practice): point your webroot to `/public` **Apache (vhost)** <VirtualHost *:80> ServerName example.com DocumentRoot /var/www/site/current/public <Directory […]