Advertisement:

Author Topic: With ssl custom page and inner page not working?  (Read 176 times)

yashfox

  • Newbie
  • *
  • Posts: 9
With ssl custom page and inner page not working?
« 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>