Osclass forums
Support forums => Themes => Real Estate => Topic started by: yashfox on July 02, 2019, 10:54:37 am
-
when i am trying to change http:// to https:// only homepage working and all other pages not working ...
Here is my htaccess code :
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>