meredirect url dengan htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
Redirect / http://www.new-address.com/
RewriteRule (.*) http://www.new-address.com/$1 [L]
</IfModule>
explanation :
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
Redirect / http://www.new-address.com/
RewriteRule (.*) http://www.new-address.com/$1 [L]
</IfModule>
explanation :
Helo,
I found this in the internet when I need to custom my 404 page . Because the default 404 page from codeigniter is so ‘default’ .
When the application can not found the page requested, it handle by the Exceptions in the codeigniter , function show_404.
You can find the file in [...]
I found an interesting code when I’m coding.
what is difference between :
$_fx = &$a ;
with
$_fx = $a ;
The first one, we call it parsing reference, and the second one , is parsing value.
you can see the difference with this sample :
Ini gw dapet dari php.net waktu gw nyari fungsi u/ mengubah character non alphanumeric ke ‘-’ .
Berguna u/ merename filename yg aneh2 atau hal2 lain :