.htaccess - 404 not found with assets on https -
i want implement https website. since did redirection, assets stylesheets or images return 404 not found. headers can see in development tools show requests done in http url in https. how can fix please ?
here .htaccess (i'm using slim php framework)
rewriteengine on rewritecond %{request_filename} !-f rewritecond %{https} off rewriterule ^(.*)$ https://%{http_host}%{request_uri} [l,r=301] rewritecond %{http_host} ^www.domain.com rewriterule ^ index.php [qsa,l]
Comments
Post a Comment