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]
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 [...]
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’ [...]
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 [...]
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. [...]