Thank you Flarum Team for creating such a nice app for free!! I have just install successfully my forum at https://www.forum.assistavenue.com
My personal flarum at forum.assistavenue.com
Make sure to set the site URL properly, it looks like you haven't set it up properly for use over SSL.
Clicking any topic throws up an error for me.
Seems all error are for SSL issue. Thank you Team.
I found the issue. Site is set to run on https:// but not on https:// www.
- Edited
Thank you so much for your feedback @KarlReza1 and @JohnP I have done necessary changes in apache serve. But now icons are not showing with this URL: https://www.forum.assistavenue.com but found that when I redirect to https://forum.assistavenue.com, it shows fine.
- Edited
luceos Thank you for your quick reply. I tried to change accordingly in my apache server. But seems still when I browse with www it does not redirect to https://...
My htaccess file configured accordingly. And config.php also show this url: https://forum.assistavenue.com. Thank you for your kind help.
<IfModule mod_headers.c>
RequestHeader unset Proxy
</IfModule>
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-SSL} !on
RewriteCond %{HTTP_HOST} ^forum\.assistavenue\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.forum\.assistavenue\.com$
RewriteRule ^/?$ "https\:\/\/forum\.assistavenue\.com\/" [R=301,L]
If you're using cloudflare DNS, it's better to quickly set up a page rule for the redirect.
- Edited
KarlReza1 yeah they aren't.
jewel RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-SSL} !on
RewriteCond %{HTTP_HOST} forum.assistavenue.com$ [OR]
RewriteCond %{HTTP_HOST} www.forum.assistavenue.com$
RewriteRule ^/?$ "https:\/\/forum.assistavenue.com\/" [R=301,L]
I don't think you should redirect both, how about this:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
- Edited
Hi @luceos, @KarlReza1 and @JohnP Thanks for your investigation and suggestion, I tried with this as suggested by @luceos :
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
And seems working fine now. Thank you so much!!!