CodeIgniter Forums
.htaccess and mod_rewrite ? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: .htaccess and mod_rewrite ? (/showthread.php?tid=43128)



.htaccess and mod_rewrite ? - El Forum - 06-30-2011

[eluser]romeomustdie[/eluser]
I really want to know it , please help me the way by which i can know it very simple way.


.htaccess and mod_rewrite ? - El Forum - 07-01-2011

[eluser]toopay[/eluser]
In Ubuntu? Here's my "ussually working" htaccess in my Ubuntu environment
Code:
RewriteEngine On
RewriteBase /

<Files .*>
    Order Deny,Allow
    Deny From All
</Files>

RewriteRule ^(?:application|system)\b index.php/$0 [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^.*$ index.php/$1 [L]



.htaccess and mod_rewrite ? - El Forum - 07-01-2011

[eluser]romeomustdie[/eluser]
Please explain each step , i really want to know each step functionality


.htaccess and mod_rewrite ? - El Forum - 07-01-2011

[eluser]osci[/eluser]
take a visit at apache.org and read. They explain every single line there. So, if you really want to know there is your info.


.htaccess and mod_rewrite ? - El Forum - 07-01-2011

[eluser]romeomustdie[/eluser]
Plese help on below post


.htaccess and mod_rewrite ? - El Forum - 07-01-2011

[eluser]romeomustdie[/eluser]
I have learned little bit but just stuck on these part

1.

[ RewriteRule ^(?:application|system)\b index.php/$0 [L] ]

Knowledge :
Escaping:
\char escape that particular char
(for instance to specify the chars “.[]()” etc.)

so \b index.php/$0[L] what really tell ?



RewriteRule ^.*$ index.php/$1 [L]



so /$1 [L] what really mean ?


.htaccess and mod_rewrite ? - El Forum - 07-01-2011

[eluser]InsiteFX[/eluser]
.htaccess tips and tricks

InsiteFX


.htaccess and mod_rewrite ? - El Forum - 07-01-2011

[eluser]romeomustdie[/eluser]
I salute your kind help . CI Forum Rocks.