Codeigniter项目没有运行除XAMPP之外的其他WAMP服务器

时间:2013-06-12 10:39:58

标签: php codeigniter xampp wamp easyphp

我的codeIgniter项目在Xampp 1.7.3中运行良好,但在任何其他本地服务器上都无法运行(例如Easy PHP,WAMP等)。

我的htaccess文件

# 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]

2 个答案:

答案 0 :(得分:1)

您的.HTACCESS无法与WAMP服务器配合使用。使用以下

更改config.php中的基本网址
$config['base_url']='http://localhost/yourproject/index.php/';

答案 1 :(得分:0)

这是一个奇怪的htaccess但无论如何。

您是否已激活Apache rewrite_module,默认情况下我认为它未被激活。

左键单击系统托盘中的wamp manager图标 - > Apache - > Apache模块 - > rewrite_module

在菜单列表中找到它并且如果没有勾选,请单击它并等待10秒以重新启动Apache,然后你应该好好去。