目次
Windows IIS7.5 で FuelPHP を動かす
Microsoft URL Rewrite Module のインストール
- Microsoft Download Center の検索ボックスに 'URL Rewrite Module' を入力して検索する。
- 環境に合わせて以下の何れかをダウンロードする。
Microsoft URL Rewrite Module 2.0 for IIS 7 (x64)
Microsoft URL Rewrite Module 2.0 for IIS 7 (x86)
FuelPHP サイトの追加
- 「スタートメニュー」の「プログラムとファイルの検索」に 'inetmgr' を入力して実行する。
- Windows の hosts ファイルを設定する。※DNSを設定する場合は不要です。
> powershell -command start \"notepad\" -verb runas -argumentlist \"%SystemRoot%\\system32\\drivers\\etc\\hosts\"
hosts
127.0.0.1 fuelapp.localhost
- Fuel の public フォルダに以下のファイルを UTF-8 で保存する。
D:\webapps\fuelapp\public\web.config
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <defaultDocument> <files> <add value="index.php" /> </files> </defaultDocument> <rewrite> <rules> <rule name="FuelApp規則" stopProcessing="true"> <match url="^(.*)$" ignoreCase="false" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="index.php/{R:1}" logRewrittenUrl="false" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
PHP モジュールの設定
Windows IIS 7.5 で PHP を動かす でインストールした PHP をベースに説明する。
mysqli モジュールを有効化
- C:\php-5.4.8-nts\php.ini の Dynamic Extensions を設定する。
;extension=php_mysqli.dll extension=ext/php_mysqli.dll