0

サーバーにCodeigniterをセットアップし、GroceryCrudをインストールしました。残念ながら、サーバーはWindowsベースであり、URLの書き換えをサポートしておらず、GroceryCrudを使用して立ち往生しています。

食料品のクラッドフォーラムを検索しても何も見つからなかったので、誰かがこれに対する解決策を説明できますか?

よろしく

4

2 に答える 2

0

web.configWebルートで名前を付けたファイルを作成し、次のファイルをファイルに配置します

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="Rewrite to index.php">
                    <match url="index.php|robots.txt|images|test.php" />
                    <action type="None" />
                </rule>
                <rule name="Rewrite CI Index">
                    <match url=".*" />
                    <conditions>
                        <add input="{REQUEST_FILENAME}" pattern="css|js|jpg|jpeg|png|gif|ico|htm|html" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="index.php/{R:0}" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

上記は、Codeigniterフォーラムで使用されている例です

$config['uri_protocol']また、がに設定されていることを確認する必要がある場合がありますAUTO

于 2012-06-07T08:12:36.157 に答える
0

CodeIgniterの構成ファイルを変更し、$ config ['querystring']=falseを変更します

これで、このようなGroceryCrudライブラリ関数にアクセスできますwww.example.com/index.php/ControllerClass/FunctionName

于 2012-06-27T16:42:57.027 に答える