Welcome Guest, Not a member yet? Register   Sign In
[lighttpd] rewrite rules for CI
#1

[eluser]_krc_[/eluser]
Hi guyz.

I have a problem with setting up rewrite rule for my CI project with lighttpd. I tried to search every solution over the web, trying many combinations and nothing works ;/.
Maybe You can help me out.

My current rewrite rule for apache was:

Code:
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|images|captcha|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]

and the config from CI is:

Code:
$config['base_url']    = "http://localhost:8181/ci_demo/";
$config['index_page'] = "";
$config['uri_protocol']    = "AUTO";

Can You please tell me how the rewrite rule for lighty should look like in my case?

Thanks in advance
#2

[eluser]Dennis Rasmussen[/eluser]
http://codeigniter.com/wiki/Rewrite_with_lighttpd/ Smile
#3

[eluser]_krc_[/eluser]
I tried that before, not working.

Entering:
http://127.0.0.1:8181/ci_demo/welcome/index

shows:
404 - Not found
#4

[eluser]Dennis Rasmussen[/eluser]
Apache error or Codeigniter error?
#5

[eluser]_krc_[/eluser]
Apache is stopped and the 404 source is:
Code:
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
&lt;html &gt;
&lt;head&gt;
  &lt;title&gt;404 - Not Found&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
  <h1>404 - Not Found</h1>
&lt;/body&gt;

&lt;/html&gt;

So I guess it's not CI either

When I enter: http://127.0.0.1:8181/ - it show the index page in www, so it's working properly.
When I turn off the rewrite rule, I can only get to:
http://127.0.0.1:8181/ci_demo
#6

[eluser]_krc_[/eluser]
also for the record, access log show this:

10.0.2.2 127.0.0.1:8181 - [29/Sep/2010:20:56:25 -0400] "GET /ci_demo/welcome/index HTTP/1.1" 404 345 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; pl; rv:1.9.2.10) Gecko/20100914 Firefox/3.6.10"




Theme © iAndrew 2016 - Forum software by © MyBB