.htaccess - laravel 5.2 - from domain to subdomain -
i transfert laravel installation subdomain, application not work, domain 'server not found' .htaccess is:
rewritebase / rewritecond %{http_host} !^subdomain rewritecond %{request_uri} !^public rewriterule ^(.*)$ public/$1 [l] rewritecond %{http_host} ^subdomain rewritecond %{request_uri} !^public rewriterule ^(.*)$ public/ [l]
my structure is:
- css/ - error_log - favicon.ico - favicon.png - icon/ - index.php - local/ - resources/ - robots.txt - uploads/ - web.conf
any idea?
Comments
Post a Comment