Mod Rewrite rule to Zeus Server rule (Codeigniter) - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T08:53:56Zhttp://stackoverflow.com/feeds/question/338511http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/338511/mod-rewrite-rule-to-zeus-server-rule-codeigniter0Mod Rewrite rule to Zeus Server rule (Codeigniter)John McCollum2008-12-03T19:59:13Z2008-12-04T12:05:30Z
<p>Hi everyone,</p>
<p>I'm about to go live with a Codeigniter powered site. I want to remove index.php from the url so that instead of this:</p>
<pre><code>http://www.mysite.com/index.php/controller
</code></pre>
<p>I get something like this:</p>
<pre><code>http://www.mysite.com/controller
</code></pre>
<p>So far, pretty straightforward. In the past I've used the mod-rewrite rule supplied by the Codeigniter documentation:</p>
<pre><code>RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
</code></pre>
<p>This works like a charm. However, for this site, I'm having to use a Zeus web server rather than Apache, and I'm not familiar with it at all. Zeus has its own rewrite rules such that this:</p>
<pre><code>RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^[^/]*\.html$ index.php
</code></pre>
<p>would become this:</p>
<pre><code>match URL into $ with ^/[^/]*\.html$
if matched then set URL = /index.php
</code></pre>
<p>Can anyone help me rewrite the first rule for Zeus? Any help very gratefully received!</p>
http://stackoverflow.com/questions/338511/mod-rewrite-rule-to-zeus-server-rule-codeigniter/340362#3403620Answer by John McCollum for Mod Rewrite rule to Zeus Server rule (Codeigniter)John McCollum2008-12-04T12:05:30Z2008-12-04T12:05:30Z<p>Figured it out - the following works nicely for me:</p>
<pre><code>map path into SCRATCH:DOCROOT from /
set SCRATCH:ORIG_URL = %{URL}
set SCRATCH:REQUEST_URI = %{URL}
look for file at %{SCRATCH:DOCROOT}%{SCRATCH:REQUEST_URI}
if not exists then look for dir at %{SCRATCH:REQUEST_URI}%{SCRATCH:REQUEST_URI}
if not exists then set URL = /index.php%{SCRATCH:REQUEST_URI}
</code></pre>