- Edited
Hi!I have my osticket in a subfolder and I want to force the use of SSL. However, I don't know what to add in the .htaccess at root domain level because I have a wordpress website running there. This would be an example of the structure:www.mydomain.com -> the wordpress sitewww.mydomain.com/soporte/ the subfolder where osticket is installedThe .htaccess file located at root level has the wordpress rewrite code so, every time I want to specify that I want to run just the /soporte subfolder over SSL, the browser shows me "too many redirections" error.How can I run my osticket installation with SSL - without redirect the wordpress to SSL? (https://www.mydomain.com/soporte/)This is the .htaccess code that wordpress set:# BEGIN WordPress<IfModule mod_rewrite.c>RewriteEngine OnRewriteBase /RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule . /index.php </IfModule>DirectoryIndex index.php# END WordPress