htaccess到web.config 500内部服务器错误

时间:2014-06-27 13:53:50

标签: .htaccess web-config

我的网页在linux服务器上工作 这是htaccess文件的内容

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$  index.php?sayfa=$1 [L]
</IfModule>

我将页面移动到支持php和mysql的Windows服务器。 Htaccess没有用。 我使用在线工具创建了web.config代码。 这是我的webconfig代码。

<rule name="rule 1Q" stopProcessing="true">
<match url="^(.*)$"  />
<action type="Rewrite" url="/index.php?sayfa={R:1}"  />
</rule>

但这段代码不起作用? 我该如何解决? 非常感谢

0 个答案:

没有答案