Sean
Don't Worry, Be Happy
Using htaccess to re-direct everyone to this page. But the stylesheet do not work on it ?
HTML CODE :
DIRECTORY :
.HTACCESS:
HTML CODE :
HTML:
<html>
<head>
<title>Coming Soon</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
Coming Soon
</body>
</html>
DIRECTORY :
.HTACCESS:
Code:
RewriteEngine On
RewriteBase /
RewriteCond %{REMOTE_ADDR} !^111\.111\.111\.111
RewriteCond %{REQUEST_URI} !^/coming-soon/!$
RewriteRule ^(.*)$ http://sean-davies.com/coming-soon/! [R=307,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php