<?xml version="1.0" encoding="UTF-8"?>
<!--
Please refer to machine.config.comments for a description and
the default values of each configuration section.

For a full documentation of the schema please refer to
http://go.microsoft.com/fwlink/?LinkId=42127

To improve performance, machine.config should contain only those
settings that differ from their defaults.
-->
<configuration>
<system.web>
<customErrors mode="Off" />
        <identity password="Maqmaq1345" userName="sindicatoseth" />
</system.web>
<system.webServer>
<httpErrors errorMode="Detailed" />
<rewrite> 
	<rules> 
		<rule name="pagina"> 
			<match ignoreCase="true" url="^pagina/([0-9]+)/([a-zA-Z0-9_-]+)$" /> 
			<action type="Rewrite" url="/pagina.asp?Pagina={R:1}" appendQueryString="false" /> 
		</rule>
		<rule name="formulario"> 
			<match ignoreCase="true" url="^formulario/([0-9]+)/([a-zA-Z0-9_-]+)$" /> 
			<action type="Rewrite" url="/formulario.asp?FormularioID={R:1}" appendQueryString="false" /> 
		</rule> 
		<rule name="albuns"> 
				<match ignoreCase="true" url="^albuns$" /> 
				<action type="Rewrite" url="/albuns.asp" appendQueryString="false" /> 
		</rule> 
		<rule name="album"> 
			<match ignoreCase="true" url="^album/([0-9]+)/([a-zA-Z0-9_-]+)$" /> 
			<action type="Rewrite" url="/Album.asp?ID={R:1}" appendQueryString="false" /> 
		</rule>
		<rule name="videos"> 
			<match ignoreCase="true" url="^videos$" /> 
			<action type="Rewrite" url="/videos.asp" appendQueryString="false" /> 
		</rule>
		<rule name="video"> 
			<match ignoreCase="true" url="^video/([0-9]+)/([a-zA-Z0-9_-]+)$" /> 
			<action type="Rewrite" url="/videos.asp?ID={R:1}" appendQueryString="false" /> 
		</rule>	
		<rule name="lenoticia"> 
			<match ignoreCase="true" url="^noticia/([0-9]+)/([a-zA-Z0-9_-]+)$" /> 
			<action type="Rewrite" url="/LeNoticia.asp?ID={R:1}" appendQueryString="false" /> 
		</rule>
		<rule name="noticias"> 
			<match ignoreCase="true" url="^noticias$" /> 
			<action type="Rewrite" url="/exibe-todasnoticias.asp" appendQueryString="true" /> 
		</rule> 
		<rule name="produto"> 
			<match ignoreCase="true" url="^produto/([0-9]+)/([a-zA-Z0-9_-]+)$" /> 
			<action type="Rewrite" url="/desc-produto.asp?id={R:1}" appendQueryString="false" /> 
		</rule>
		<rule name="produtos"> 
			<match ignoreCase="true" url="^produtos/([0-9]+)/([a-zA-Z0-9_-]+)$" /> 
			<action type="Rewrite" url="/lista-produto.asp?id={R:1}" appendQueryString="false" /> 
		</rule>
		<rule name="categoriaprods"> 
			<match ignoreCase="true" url="^prodcategoria$" /> 
			<action type="Rewrite" url="/cat-produto.asp" appendQueryString="false" /> 
		</rule>	
		<rule name="carrinho"> 
			<match ignoreCase="true" url="^carrinho$" /> 
			<action type="Rewrite" url="/carrinho.asp" appendQueryString="false" /> 
		</rule>
		<rule name="fechaorcamento"> 
			<match ignoreCase="true" url="^fechaorcamento/([0-9]+)$" /> 
			<action type="Rewrite" url="/fim-orcamento.asp?id={R:1}" appendQueryString="false" /> 
		</rule>	
		<rule name="enquete"> 
			<match ignoreCase="true" url="^enquetes$" /> 
			<action type="Rewrite" url="/enquetes.asp" appendQueryString="false" /> 
		</rule>		
	</rules> 
</rewrite>
        <urlCompression doDynamicCompression="false" />
        <defaultDocument enabled="true">
            <files>
                <add value="default.asp" />
                <add value="index.asp" />
                <add value="index.htm" />
                <add value="index.html" />
                <add value="index.php" />
                <add value="index.aspx" />
                <add value="default.aspx" />
            </files>
        </defaultDocument>
        <handlers>
            <add name="PHP-FastCGI5.6" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="C:\php5.6\php-cgi_5.exe" resourceType="File" />
        </handlers> 
</system.webServer>
</configuration>