thanks deadpool.
on topic: Advertisement video added to home page, click the text that says Click To Watch The Advert Video!
on topic: Advertisement video added to home page, click the text that says Click To Watch The Advert Video!
#show indexes(is optional) and follow the symbolic links , needed for rewrite on some servers
Options +Indexes
Options +FollowSymlinks
RewriteEngine on
#start rewriting the requests to www instead of with out www , to make certificate always valid
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^www\.powerchaos.com\.com
RewriteRule (.*) https://www.powerchaos.com/$1 [R=301,L]
# port 80 traffic to https://, except topsites.php
RewriteCond %{SERVER_PORT} ^80$
RewriteCond %{REQUEST_URI} !^/topsites\.php$ [NC]
RewriteRule .* https://www.powerchaos.com%{REQUEST_URI} [R=301,L]
# port 443 traffic for topsites.php to http://
RewriteCond %{SERVER_PORT} ^443$
RewriteCond %{REQUEST_URI} ^/topsites\.php$ [NC]
RewriteRule .* http://www.powerchaos.com%{REQUEST_URI} [R=301,L]