So oversea's is coding the project for us using a custom joomla application. The problem is that when i told them clean urls. They are insisting that
www.domain.com/index.php/whatever--the--section--is is the proper way to code the url. I told them that the proper way to code the url is
www.domain.com/whatever--the--section--is.html
I requested the htaccess file and can't see where the change needs to be because i write my htaccess differently.
mine usually looks like
RewriteRule ^([^/]*)\.htm$ /?p=$1 [L]
BUT NOT THERES... See Below. Is there anyway that this can be fixed..
########## Begin - Joomla! core SEF Section
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## End - Joomla! core SEF Section