Hello,
I am trying to enhance our website SEO and I am not sure what is the best way to go for it. Below is a copy of my htaccess file.
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
# rewrite rules
RewriteEngine On
# ditch index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
<Files 403.shtml>
order allow,deny
allow from all
</Files>
Options -Indexes
AuthName testwebsite.com
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<IfModule mod_suphp.c>
suPHP_ConfigPath /home/alsalafe
<Files php.ini>
order allow,deny
deny from all
</Files>
</IfModule>
Also I would appreciate any recommendation regarding a book or a course that could enhance my knowledge in this track.
Thanks in advance.