我将我的网站上传到使用Windows Server 2008 r2的服务器并且我遇到了问题(我认为它是由于.htaccess文件导致的)我收到内部500错误消息,我正在使用xampp
我的网站不是直接在htdocs文件夹上,它在htdocs / server /上可能是个问题吗?
还有我的.htaccess文件
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
由于
答案 0 :(得分:1)
我认为Windows Server不会遵守您的 .htaccess 。 尝试在 webconfig 文件中定义相同的逻辑。 首先,您需要指示它将您的网站作为公共文件夹。 然后在这个文件夹中,试试这个 web.config
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<defaultDocument>
<files>
<clear />
<add value="index.php" />
<add value="default.aspx" />
<add value="Default.htm" />
<add value="Default.asp" />
<add value="index.htm" />
<add value="index.html" />
</files>
</defaultDocument>
<handlers accessPolicy="Read, Execute, Script" />
<rewrite>
<rules>
<rule name="Imported Rule 2" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
祝福