This is the first one which I tried:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^mywebsite\.com
RewriteRule ^(.*)$ http://www.'>http://www.mywebsite.com/$1 [R=301,L]
This is the second one which I tried:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteRule ^(.*)$ http://www.mywebsite.com/$1 [R=301,L]
At second rule my website has index.php as well.
Both caused same error.