0

私の codeIgniter プロジェクトは Xamp 1.7.3 でうまく動作していますが、他のローカル サーバー (Easy PHP、WAMP など) では動作しません。

私のhttaccessファイル

# Use PHP5 Single php.ini as default
AddHandler application/x-httpd-php5s .php
DirectoryIndex index.html index.shtml index.xhtml index.wml index.perl index.pl index.plx index.ppl index.cgi index.jsp index.js index.jp index.php4 index.php3 index.php index.phtml index.htm home.htm default.htm index.fcgi default.html

# For security reasons, Option followsymlinks cannot be overridden.
#Options +FollowSymLinks

Options +SymLinksIfOwnerMatch

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/system.*

RewriteRule ^(.*)$ /pwame/index.php/$1 [L]
4

2 に答える 2

0

それは奇妙なhtaccessですが、何でも。

Apache rewrite_module を有効にしましたか? デフォルトでは有効になっていないと思います。

システムトレイの wamp manager アイコンを左クリック -> Apache -> Apache Modules -> rewrite_module

メニューリストでそれを見つけて、チェックされていない場合は、それをクリックして Apache が再起動するまで 10 秒待ちます。

于 2013-06-15T19:48:43.653 に答える