GoDaddy .htaccess无法正常工作

时间:2014-09-07 04:49:00

标签: php .htaccess

我使用xampp和flight php在我的计算机上开发了一个网站,一切正常。我决定使用windows plesk帐户在godaddy上传它,当我尝试访问我的网站时,它会产生404错误。我知道index.php已执行但重写无效。防爆。当我访问mysite.com/login时,它会产生404错误。我使用默认航班php htaccess。

RewriteEngine On
RewriteBase /httpdocs/uem-um-gov.com
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]

1 个答案:

答案 0 :(得分:1)

我发现服务器使用的是IIS而不是apache,因此我将.htaccess替换为Web.config等效。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <clear />
                <rule name="Rewrite to index.php" stopProcessing="true">
                    <match url="^(.*)$" />
                    <conditions>
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="index.php" appendQueryString="true" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>