Search
-
Categories
Tags
5.2 best php editor css debian error finger eleven google htaccess javascript javascript function life lifehouse linux love Lyrics mod_rewrite mysql mysql error mysql function nickelback nusphere nusphere phped nusphere phped 5.2 palawan palawan vacation paralyzer pdflib php4 pdflib php5 photoshop php phped php editor php error php function plugin regex regular expression regular expressions vacation vhcs video windows vista wordpress wordpress error wow
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 error installing apache mysql php, httpd.conf, installing apache, mysql, php, php.ini
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>
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 mod_rewrite, url rendering
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
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