Using search engine and user friendly URLs

Comparing #6 with #7

Revision #7 was created by Maurizio Domba Cerin Maurizio Domba Cerin on Jan 18, 2011, 8:40:35 PM.

replacet &lt, &gt with <, > in .htaccess example

Content

[...]
We need one more step in order to remove `index.php` from our URLs, i.e., configuring the Web server. For Apache HTTP server, as described in the [Definitive Guide](/doc/guide/topics.url), we need to place a file named `.htaccess` under the directory containing the entry script. The file should have the following content:

~~~
Options +FollowSymLinks
IndexIgnore */*
&lt;<IfModule mod_rewrite.c&gt;>
RewriteEngine on
[...]
# otherwise forward it to index.php
RewriteRule . index.php
&lt;</IfModule&gt;>
~~~

Please consult the user reference if you are using a different Web server.
[...]