Welcome Guest, Not a member yet? Register   Sign In
.htaccess and mod_rewrite ?
#1

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

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

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

[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.
#5

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

[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 ?
#7

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

InsiteFX
#8

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




Theme © iAndrew 2016 - Forum software by © MyBB