Warning Page for Adult Sites

To set warning page for adult sites, edit .htaccess file.

Lets say your page is

warning.html

Find

Code:
RewriteRule ^$ index.php
Replace it with

Code:
RewriteRule ^$ warning.html
If warning.html is in a sub folder, replace with

Code:
RewriteRule ^$ /path/to/warning.html
HOWTO