I have this htaccess file
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
this is working for php but when i add
Options +ExecCGI
AddHandler cgi-script .py
AddHandler to it to run python also then getting 404 not found when accessing domain
https://site.in/python/index.py
Any solution Thanks