我有Windows託管和網站是在PHP中。所以我問了託管公司我在哪裏可以找到.htaccess文件。他們說在Windows主機中沒有.htaccess文件,我必須使用web.config文件來進行網站配置。使用web.config和php
我試過這個簡單的代碼在我的web.config,但我得到500 - 內部服務器錯誤。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
</system.web>
<rewrite>
<rule name="rule 1c" stopProcessing="true">
<match url="^([a-zA-Z]+)$" />
<action type="Rewrite" url="/index.php?category={R:1}" appendQueryString="true" />
</rule>
</rewrite>
</configuration>