Dentro de los archivos generados por el panel de hosting encontrará un archivo que se llama web.config en el directorio raíz, el cual debe ser reemplazando con la siguiente información para su funcionamiento.
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<defaultDocument>
<files>
<clear />
<add value="index.php" />
</files>
</defaultDocument>
<rewrite>
<rules>
<clear />
<rule name="WordPress Rule" stopProcessing="true"> <match url=".*" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false"> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions>
<action type="Rewrite" url="index.php" />
</rule>
</rules>
<outboundRules>
<clear />
</outboundRules>
</rewrite>
</system.webServer>
</configuration>Si tienes ya instalado el certificado de seguridad debes colocar de la siguiente manera. Si no tienes el certificado de seguridad instalado puedes seguir esta guía https://soporteacc.com/hc/articles/7/10/88/instalar-certificado-lets-encrypt-ssl-gratuito
<?xml version="1.0" encoding="UTF-8"?><configuration> <system.webServer> <defaultDocument> <files> <clear /> <add value="index.php" /> </files> </defaultDocument> <rewrite> <rules> <clear /> <rule name=".well-known" enabled="true" stopProcessing="true"> <match url=".well-known" ignoreCase="true" /> <action type="None" /> <conditions> <add input="{URL}" pattern=".well-known" /> </conditions> </rule><rule name="Force HTTPS" enabled="true"> <match url="(.*)" ignoreCase="false" /> <conditions> <add input="{HTTPS}" pattern="off" /> </conditions> <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" appendQueryString="true" redirectType="Permanent" /> </rule> <rule name="WordPress Rule" stopProcessing="true"> <match url=".*" /> <conditions logicalGrouping="MatchAll" trackAllCaptures="false"> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="index.php" /> </rule> </rules> <outboundRules> <clear /> </outboundRules> </rewrite> </system.webServer></configuration>