Category Archives: apache

Installing apache 2.2, php 5.2 and mysql 5 in windows vista

ShareHere’s a quick guide for installing apache 2.2, php 5.2 and mysql 5 in windows vista. Download needed files: 1. Apache – msi file 2. PHP – better choose the zip file than the msi installer 3. MYSQL – msi … Continue reading

Posted in apache, mysql, php | Tagged , , , , , | Leave a comment

htaccess not working

ShareOn your httpd.conf Set this: AllowOverride All same for the other one and uncomment this line LoadModule rewrite_module modules/mod_rewrite.so <Directory /> Options FollowSymLinks AllowOverride All Order deny,allow Deny from all </Directory> <Directory “C:/htdocs”> AllowOverride All </Directory>

Posted in apache, htaccess | Tagged , , | Leave a comment

mod_rewrite domain

ShareRewriteCond %{HTTP_HOST} ^(www\.)?yourdomain\.com [NC] RewriteRule ^(.*)$ http://newdomain.com/$1 [R=301,L] Introduction to mod_rewrite

Posted in anything under the moonlight, apache, htaccess | Tagged , | Leave a comment

domain redirection

ShareAs far as SEO is concerned 301 redirect is the most effecient way of domain redirection. Some ways of doing it: PHP Redirect <? Header( “HTTP/1.1 301 Moved Permanently” ); Header( “Location: http://www.new-url.com” ); ?> .htaccess Options +FollowSymlinks RewriteEngine on … Continue reading

Posted in apache, SEO, server | Tagged , | Leave a comment

error 500

Shareproblem: error 500 on xampp when using htaccess: solution: Locate this file httpd.conf and uncomment this LoadModule mod_rewrite modules/mod_rewrite.sop and restart apache

Posted in apache, server | Tagged , , , | Leave a comment