.htaccess rewrite slows down page.

Phantium

Verified User
Joined
Jul 8, 2004
Messages
71
Location
Netherlands
My friend has a site on my server, however his site uses rewrite for his pages links. And it seems to slow down the loading of his page massively.

The server is not some crappy celeron or such, it's blazing fast. ;)

Is there any way to fix this? Other then turning off the rewrite, which seems to best.

He uses this,
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
AddType application/x-httpd-php .html
# END WordPress
 
Back
Top