My Blog

MVC .htaccess with exclusion of .html files

on August 30, 2011 By Anil Konsal

RewriteEngine on RewriteRule ^\.htaccess$ – [F] RewriteRule ^(.*)\.html$ – [L] RewriteCond %{REQUEST_URI} =”" RewriteRule ^.*$ /public/index.php [NC,L] RewriteCond %{REQUEST_URI} !^/public/.*$ RewriteRule ^(.*)$ /public/$1 RewriteCond %{REQUEST_FILENAME} -f RewriteRule ^.*$ – [NC,L] RewriteRule ^public/.*$ /public/index.php [NC,L]

Read More


Zend Framework Project .htaccess with exclusion of folders

on August 30, 2011 By Anil Konsal

Options +FollowSymLinks RewriteEngine on RewriteRule ^\.htaccess$ – [F] RewriteRule ^(blog|forum)($|/) – [L] RewriteCond %{REQUEST_URI} =”" RewriteRule ^.*$ /public/index.php [NC,L] RewriteCond %{REQUEST_URI} !^/public/.*$ RewriteRule ^(.*)$ /public/$1 RewriteCond %{REQUEST_FILENAME} -f RewriteRule ^.*$ – [NC,L] RewriteRule ^public/.*$ /public/index.php [...]

Read More


Creating Apache Virtual hosts in windows vista

on January 31, 2010 By Anil Konsal

On my way to start Zend Framework development, I found that I have to create the virtual host in my windows vista machine. I Googled for this thing and finally got my virtual host ‘zf.local’ [...]

Read More


Am Zend Certified Engineer now!

on January 20, 2010 By Anil Konsal

Finally, after an experience of 4 years and hours of studying, I am a Zend Certified Engineer today. The exam is not as tough as I expected, at the same time its not an easy [...]

Read More


Multiple attachments not going with PHPmailer v5

on November 21, 2009 By Anil Konsal

A bug in the PHPMailer v5 has been stopping me from sending multiple attachments in a mail. It was quite a confusing thing coz it I checked everything in my PHP code time and again. [...]

Read More