Web sayfamız sadece phpBB 3.0.x sürümlerine destek vermektedir. Konu açmadan, ileti yazmadan önce lütfen site kuralları sayfamıza göz atınız.

[Çözüldü] Windows Server & 500 Hatası

[Çözüldü] Windows Server & 500 Hatası

İleti Sivasli_14 12 Ağu 2013 21:46

Siteme Seo Kuruyorum 500 Hatası Veriyor ?

Host Yöneticime Soruyorum mod_Rewrite Açık Diyor Fakat Yinede Kuramıyorum !

Başka Ne Yapmam Gerek..

VarBiraZ.Net

Teşekkürler.

Çözüm:

Web.config Dosyasına İmported Codları Ekledim Sorunsuz Çalışıyor..

Kod: Tümünü seç
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
   <system.webServer>
      <security>
         <requestFiltering>
            <hiddenSegments>
               <add segment="cache" />
               <add segment="files" />
               <add segment="store" />
               <add segment="config.php" />
               <add segment="common.php" />
            </hiddenSegments>
         </requestFiltering>
      </security>
        <rewrite>
            <rules>
                <rule name="Imported Rule 1" stopProcessing="true">
                    <match url="." ignoreCase="false" />
                    <conditions logicalGrouping="MatchAny">
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" />
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" />
                    </conditions>
                    <action type="None" />
                </rule>
                <rule name="Imported Rule 2" stopProcessing="true">
                    <match url="^forum\.html$" />
                    <action type="Rewrite" url="/\/index.php" appendQueryString="true" />
                </rule>
                <rule name="Imported Rule 3" stopProcessing="true">
                    <match url="^(forum|[a-z0-9_-]*-f)([0-9]+)(-([0-9]+))?\.html$" />
                    <action type="Rewrite" url="/\/viewforum.php?f={R:2}&amp;start={R:4}" appendQueryString="true" />
                </rule>
                <rule name="Imported Rule 4" stopProcessing="true">
                    <match url="^(forum|[a-z0-9_-]*-f)([0-9]+)/(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$" />
                    <action type="Rewrite" url="/\/viewtopic.php?f={R:2}&amp;t={R:4}&amp;start={R:6}" appendQueryString="true" />
                </rule>
                <rule name="Imported Rule 5" stopProcessing="true">
                    <match url="^([a-z0-9_-]*)/?(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$" />
                    <action type="Rewrite" url="/\/viewtopic.php?forum_uri={R:1}&amp;t={R:3}&amp;start={R:5}" appendQueryString="true" />
                </rule>
                <rule name="Imported Rule 6" stopProcessing="true">
                    <match url="^resources/[a-z0-9_-]+/(thumb/)?([0-9]+)$" />
                    <action type="Rewrite" url="/\/download/file.php?id={R:2}&amp;t={R:1}" appendQueryString="true" />
                </rule>
                <rule name="Imported Rule 7" stopProcessing="true">
                    <match url="^(member|[a-z0-9_-]*-u)([0-9]+)\.html$" />
                    <action type="Rewrite" url="/\/memberlist.php?mode=viewprofile&amp;u={R:2}" appendQueryString="true" />
                </rule>
                <rule name="Imported Rule 8" stopProcessing="true">
                    <match url="^(member|[a-z0-9_-]*-u)([0-9]+)-(topics|posts)(-([0-9]+))?\.html$" />
                    <action type="Rewrite" url="/\/search.php?author_id={R:2}&amp;sr={R:3}&amp;start={R:5}" appendQueryString="true" />
                </rule>
                <rule name="Imported Rule 9" stopProcessing="true">
                    <match url="^(group|[a-z0-9_-]*-g)([0-9]+)(-([0-9]+))?\.html$" />
                    <action type="Rewrite" url="/\/memberlist.php?mode=group&amp;g={R:2}&amp;start={R:4}" appendQueryString="true" />
                </rule>
                <rule name="Imported Rule 10" stopProcessing="true">
                    <match url="^post([0-9]+)\.html$" />
                    <action type="Rewrite" url="/\/viewtopic.php?p={R:1}" appendQueryString="true" />
                </rule>
                <rule name="Imported Rule 11" stopProcessing="true">
                    <match url="^active-topics(-([0-9]+))?\.html$" />
                    <action type="Rewrite" url="/\/search.php?search_id=active_topics&amp;start={R:2}&amp;sr=topics" appendQueryString="true" />
                </rule>
                <rule name="Imported Rule 12" stopProcessing="true">
                    <match url="^unanswered(-([0-9]+))?\.html$" />
                    <action type="Rewrite" url="/\/search.php?search_id=unanswered&amp;start={R:2}&amp;sr=topics" appendQueryString="true" />
                </rule>
                <rule name="Imported Rule 13" stopProcessing="true">
                    <match url="^newposts(-([0-9]+))?\.html$" />
                    <action type="Rewrite" url="/\/search.php?search_id=newposts&amp;start={R:2}&amp;sr=topics" appendQueryString="true" />
                </rule>
                <rule name="Imported Rule 14" stopProcessing="true">
                    <match url="^unreadposts(-([0-9]+))?\.html$" />
                    <action type="Rewrite" url="/\/search.php?search_id=unreadposts&amp;start={R:2}" appendQueryString="true" />
                </rule>
                <rule name="Imported Rule 15" stopProcessing="true">
                    <match url="^the-team\.html$" />
                    <action type="Rewrite" url="/\/memberlist.php?mode=leaders" appendQueryString="true" />
                </rule>
                <rule name="Imported Rule 16" stopProcessing="true">
                    <match url="^([a-z0-9_-]+)(-([0-9]+))\.html$" />
                    <conditions logicalGrouping="MatchAll">
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="/\/viewforum.php?forum_uri={R:1}&amp;start={R:3}" appendQueryString="true" />
                </rule>
                <rule name="Imported Rule 17" stopProcessing="true">
                    <match url="^([a-z0-9_-]+)\.html$" />
                    <conditions logicalGrouping="MatchAll">
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="/\/viewforum.php?forum_uri={R:1}" appendQueryString="true" />
                </rule>
                <rule name="Imported Rule 18" stopProcessing="true">
                    <match url="^\/.+/(style\.php|ucp\.php|mcp\.php|faq\.php|download/file.php)$" />
                    <action type="Redirect" url="/\/{R:1}" appendQueryString="true" redirectType="Permanent" />
                </rule>
                <rule name="Imported Rule 19" stopProcessing="true">
                    <match url="^\/.+/(styles/.*|images/.*)/$" />
                    <action type="Redirect" url="/\/{R:1}" appendQueryString="true" redirectType="Permanent" />
                </rule>
            </rules>
        </rewrite>
Sivasli_14
kullanıcı
kullanıcı

İleti: 8
Kayıt: 26 Nis 2008 11:44
İsim: Özkan
HTML: Başlangıç
CSS: Başlangıç
PHP: Başlangıç
phpBB3: Başlangıç
Sürüm: phpBB3

phpBB3 SEO


Kimler çevrimiçi

Bu forumu görüntüleyenler: Kayıtlı kullanıcı yok ve 1 misafir

cron