Thank you kespinoza! Since my client has it on a Windows Server, the common solutions doesn’t work. But I could find out the solution and I’m posting it here in case someone else has the (unpleasant) chance to work with a Windows Server (first would be advicing the client to migrate to a Linux Server :P).
Windows Servers use a file called ‘web.config’, so, all I did was create it, like this:
<?xml version=”1.0″?>
<configuration>
<system.webServer>
<defaultDocument>
<files>
<remove value=”index.php” />
<add value=”index.php” />
</files>
</defaultDocument>
<rewrite>
<rules>
<rule name=”Main Rule” stopProcessing=”true”>
<match url=”.*” />
<conditions logicalGrouping=”MatchAll”>
<add input=”{REQUEST_FILENAME}” matchType=”IsFile” negate=”true” />
<add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” negate=”true” />
</conditions>
<action type=”Rewrite” url=”index.php/{R:0}” />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
This solves the problem I was having, however, it’s highly adviced to migrate to a Linux Server, since configuration problems with some plugins persist. I’m advicing the client to migrate, hope they agree. ??
Cheers!!