Hi,
i need a help.already we have mode rewrite rule RewriteRule ^(.*).html$ index.php?set=$1
this rule change html url to php now in this i need to add a condition https redirect how with this existing condition can i add new feature.
I tried to changed htaccess file but after my change my site not working properly.
My old htaccess working correctly new one not working.
my project is zend frame work plzz help
Old one
RewriteEngine On
RewriteRule ^(.*).html$ index.php?set=$1
New One
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteRule ^(.*).html$ index.php?set=$1