using IfModule in .htaccess?
A quick comparison of the .htaccess file between the two versions I found the differences like this
#############
## part of the original .htacess has
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [L]
RewriteRule ^admin /admin.php [L]
RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>
#############
## However the website I bought has something like this
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>
#############
obviously the two versions are different; something that makes me worry!. I am not good with these stuff so I need your help if you could comment on this whether something is wrong.
Thank you
The 2nd Amendment, 1789 - The Original Homeland Security.
Gun control means never having to say, "I missed you."