Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - itz3ima

Pages: [1]
1
Information / Re: redirect all requests and non www to http://www.
« on: August 08, 2019, 07:56:40 AM »
it worked for me, add in .htaccess

RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.example.com [NC]
RewriteRule ^(.*)$ http://example.org/$1 [L,R=301,NC]

Pages: [1]