move one file to http like this:
                  
                  
                  
                  
                  
                  https://example.com/test.php
                  
                  
                  
                  
                  
                  to
                  
                  
                  
                  
                  
                  http://example.com/test.php
                  
                  
                  
                  
                  
                  how can i do it?
                  
                  
                
with .htaccess
RewriteCond %{SERVER_PORT} 80 RewriteCond %{REQUEST_URI} !^/test.php$ [NC] RewriteRule ^(.*)$ https://example.com/$1 [R,L] Solved!
Обсуждают сегодня