- Fórum
- /
- Suporte Joomla
- /
- Questões Gerais
- /
- como colocar url amigaveis em servidor IIS - RESOLVIDO !!!
como colocar url amigaveis em servidor IIS - RESOLVIDO !!!
- acdesigner
-
Autor do Tópico
- Offline
- JCB! Junior
-
Menos
Mais
- acdesigner
-
Autor do Tópico
- Offline
- JCB! Junior
-
15 anos 5 meses atrás #30262
por acdesigner
"O amor é o vínculo da perfeição." Col 3;14
acdesigner replied the topic: Re: como colocar url amigaveis em servidor IIS
Fala Galera, depois de muito pesquisar,
entre muitos outros fóruns tb, um amigo postou uma solução...
basta seguir o tuto desse link, que funciona...
http://docs.joomla.org/IIS7_and_SEF_URL ... oomla_1.5x
abçs
entre muitos outros fóruns tb, um amigo postou uma solução...
basta seguir o tuto desse link, que funciona...
http://docs.joomla.org/IIS7_and_SEF_URL ... oomla_1.5x
abçs
"O amor é o vínculo da perfeição." Col 3;14
Please Entrar ou Registrar to join the conversation.
- leagencia
-
- Offline
- JCB! Professional
-
Menos
Mais
- Postagens: 203
- Obrigados Recebidos: 0
15 anos 5 meses atrás #30265
por leagencia
leagencia replied the topic: Re: como colocar url amigaveis em servidor IIS - RESOLVIDO !!!
parece ser uma solução para o problema ;
vou testar em um novo projeto parar ver o que acontece <!-- s:D --><img src="{SMILIES_PATH}/icon_e_biggrin.gif" alt="
" title="Muito Feliz" /><!-- s:D -->
usei uma vez e não era tão complexo assim. tinha funcionado normalmente
vou testar em um novo projeto parar ver o que acontece <!-- s:D --><img src="{SMILIES_PATH}/icon_e_biggrin.gif" alt="

usei uma vez e não era tão complexo assim. tinha funcionado normalmente
Please Entrar ou Registrar to join the conversation.
- dyego-s
-
- Offline
- JCB! Iniciante
-
Menos
Mais
- Postagens: 22
- Obrigados Recebidos: 0
13 anos 10 meses atrás #59206
por dyego-s
dyego-s replied the topic: Re: como colocar url amigaveis em servidor IIS - RESOLVIDO !!!
Consegui, minha hospedagem é UOL, criei o arquivo web.config na raiz, ativei as opções de urls nas configurações globais e pronto.... (<!-- w -->[url=http://www.efom.com.br" onclick="window.open(this.href);return false;]www.efom.com.br[/url]<!-- w -->)
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Security Rule" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAny">
<add input="{QUERY_STRING}" pattern="mosConfig_[a-zA-Z_]{1,21}(=|\%3D)" ignoreCase="false" />
<add input="{QUERY_STRING}" pattern="base64_encode.*\(.*\)" ignoreCase="false" />
<add input="{QUERY_STRING}" pattern="(\<|%3C).*script.*(\>|%3E)" />
<add input="{QUERY_STRING}" pattern="GLOBALS(=|\[|\%[0-9A-Z]{0,2})" ignoreCase="false" />
<add input="{QUERY_STRING}" pattern="_REQUEST(=|\[|\%[0-9A-Z]{0,2})" ignoreCase="false" />
</conditions>
<action type="CustomResponse" url="index.php" statusCode="403" statusReason="Forbidden" statusDescription="Forbidden" />
</rule>
<rule name="SEO Rule">
<match url="(.*)" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" pattern="" ignoreCase="false" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" pattern="" ignoreCase="false" />
<add input="{URL}" negate="true" pattern="^/index.php" ignoreCase="false" />
<add input="{URL}" pattern="(/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$" />
</conditions>
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Security Rule" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAny">
<add input="{QUERY_STRING}" pattern="mosConfig_[a-zA-Z_]{1,21}(=|\%3D)" ignoreCase="false" />
<add input="{QUERY_STRING}" pattern="base64_encode.*\(.*\)" ignoreCase="false" />
<add input="{QUERY_STRING}" pattern="(\<|%3C).*script.*(\>|%3E)" />
<add input="{QUERY_STRING}" pattern="GLOBALS(=|\[|\%[0-9A-Z]{0,2})" ignoreCase="false" />
<add input="{QUERY_STRING}" pattern="_REQUEST(=|\[|\%[0-9A-Z]{0,2})" ignoreCase="false" />
</conditions>
<action type="CustomResponse" url="index.php" statusCode="403" statusReason="Forbidden" statusDescription="Forbidden" />
</rule>
<rule name="SEO Rule">
<match url="(.*)" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" pattern="" ignoreCase="false" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" pattern="" ignoreCase="false" />
<add input="{URL}" negate="true" pattern="^/index.php" ignoreCase="false" />
<add input="{URL}" pattern="(/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$" />
</conditions>
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Please Entrar ou Registrar to join the conversation.
- dyego-s
-
- Offline
- JCB! Iniciante
-
Menos
Mais
- Postagens: 22
- Obrigados Recebidos: 0