All url to one url

Using a single web hosting account to host multiple sites

Postby richardk » Fri May 04, 2007 3:39 pm

Every request?
Code: Select all
Options +FollowSymLinks

RewriteEngine On

RewriteRule !^home\.php$ /home.php [L]


Or only .php files?
Code: Select all
Options +FollowSymLinks

RewriteEngine On

RewriteCond %{REQUEST_URI} \.php$ [NC]
RewriteRule !^home\.php$ /home.php [L]


Or only requests to files that don't exist?
Code: Select all
Options +FollowSymLinks

RewriteEngine On

RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule .* /home.php [L]
richardk
 
Posts: 8800
Joined: Wed Dec 21, 2005 7:50 am


Return to Domain Handling

Who is online

Users browsing this forum: No registered users and 9 guests

cron