The whole project is accessible at mysite.com/projectfolder/web/web_dev.php
but how would I point it to mysite.com. I have use digitalocean vps to host this site.
What should I change in .htaccess
file
my current settings are:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?mysite.comn$ [NC]
RewriteCond %{REQUEST_URI} !^/projectfolder/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /web/$1
RewriteCond %{HTTP_HOST} ^(www.)?mysite.com$ [NC]
RewriteRule ^(/)?$/app_dev.php [L]