A CakePHP Apache Optimization Tip
Friday, November 23rd
This post on the CakePHP google group caught my eye today and my nerd tendencies emerged from their Thanksgiving day too much food and beer hangover.
I will preface this by saying that
- I know enough about Apache web server to get by. I'm no expert.
- I have not tested this in a production environment.
This optimization tip involves moving the rewrite directives in app/webroot/.htaccess into the apache httpd.conf file.
The default CakePHP .htaccess file looks like this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>
Here's what I did to move these directives into my /etc/apache2/httpd.conf file. I have my development server setup to use multiple virtual hosts for each of my projects. So for this website, here is what my vhost entry looks like:
<VirtualHost *:80>
DocumentRoot /www/jc/webroot
ServerName jc.dev
<Directory /www/jc/webroot>
AllowOverride None
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>
</Directory>
</VirtualHost>
The key to this is that your DocumentRoot direcitve is set to the webroot dir.
12 comments so far
Sunday, August 3rd
Wednesday, July 30th
Tuesday, July 29th
Tuesday, July 29th
Tuesday, July 29th
Wednesday, July 23rd
cd de merengues mambo violento soy una gargola lyrics by arcangel houston graigs list guitar lyrics someday by nina diether ocampo pictures lalatx com exorcists game maze kingdom hearts sprites csc lawyers incorporating service california alacranes musical official website gambar perkahwinan artis eli manning drunk dance trisha bathroom video dougie poynter icons peewee kumbia allstars toccara jones pictures a4u irene fah angel locsin sexy pictures scatch and dent appliances pennsylvania dulce maria pose nude
Wednesday, July 23rd
basic racquetball rules wachovia bank aba nubmer california porche crash ramon rubia eskrima wwe divas uncovered pics worksheets on punnett squares gino green global myspace layouts goku for mugen my bubble gum lyrics rasheeda pics of sesshoumaru kagome gambar siti kahwin il cazzo piõê piccolo del mondo coi phim free truc tuyen panochas peludas vergas grandes ver gratis vivian cash pictures monster energy drink myspace graphics jerry springer uncensored pics big booty scarlett myfirsttime adik kawan rob and big net worth
Monday, December 10th
Hey, what a great tip! CakePHP rocks!