.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 ?

enter image description here

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

Popular posts from this blog

javascript - Knockout pushing observable and computed data to an observable array -

'hasOwnProperty' in javascript -

Trouble making a JSON string -