2013-06-12 66 views
0

我的codeIgniter項目在Xamp 1.7.3中運行良好,但在任何其他本地服務器(例如Easy PHP,WAMP等)中都不起作用。Codeigniter項目沒有運行除XAMP之外的其他AMP服務器

我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] 
+3

它是如何工作的。 – tomexsans

+0

如果您打開顯示php錯誤,那麼錯誤是什麼? – Derfder

回答

0

那是一個奇怪的htaccess,但不管。

您是否激活了Apache rewrite_module,默認情況下我不認爲它已激活。

左鍵單擊系統托盤中的WAMP管理器圖標 - >阿帕奇 - > Apache模塊 - > rewrite_module

找到它在菜單列表中,如果未選中,單擊它並等待10秒爲Apache是重新啓動,然後你應該很好去。

1

您的.HTACCESS不適用於WAMP服務器。在config.php中更改您的基本網址如下

$config['base_url']='http://localhost/yourproject/index.php/'; 
相關問題