apache - Redirecting non-www to www in htaccess -


this have written in .htaccess file.

rewriteengine on  rewritecond %{http_host} ^www\.spreadcreativity\.org$ rewriterule ^/?$ "https\:\/\/spreadcreativity\.org\/" [r=301,l] 

in browser displaying https://spreadcreativity.org

but want show https://www.spreadcreativity.org

please me rectify .

thanks.

try after clearing cache of web browser :

rewriteengine on  rewritecond %{http_host} !^www\. [nc] rewriterule ^/?$ https://www.spreadcreativity.org/ [r=301,l] 

Comments

Popular posts from this blog

android - Gradle sync Error:Configuration with name 'default' not found -

java - Andrioid studio start fail: Fatal error initializing 'null' -

html - jQuery UI Sortable - Remove placeholder after item is dropped -