Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Starting point site Re: Starting point site

#98566
Krist
Member

root
—public/


index.php


css/


style.css

CASE
‘public’ folder as default controller.
You just call yours.com to view public/index.php

CODE [htaccess]


RewriteEngine on

# Change yours.com to be your primary domain
RewriteCond %{HTTP_HOST} ^(www.)?yours.com$

RewriteCond %{REQUEST_URI} !^/public/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /public/$1

# Change yours.com to be your primary domain
RewriteCond %{HTTP_HOST} ^(www.)?yours.com$

RewriteRule ^(/)?$ public/index.php [L]