ontheprairies
Technical User
Using mod_rewrite for a website with the address of: how do I make people who enter end up at the website with in the address bar?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<VirtualHost XXX.XXX.XXX.XXX:80>
DocumentRoot /[URL unfurl="true"]www/house.car-toon.com/htdocs[/URL]
ServerAdmin admin@house.cartoon.com
ServerName [URL unfurl="true"]www.house.cartoon.com[/URL]
ServerAlias house.cartoon.com
RewriteEngine On
RewriteLogLevel 0
RewriteLog /[URL unfurl="true"]www/house.car-toon.com/log/rewrite_log[/URL]
RewriteCond %{HTTP_HOST} house.cartoon.com
RewriteRule ^(.*)$ [URL unfurl="true"]http://house.car-toon.com$1[/URL] [R]
<Directory />
Options ALL
AllowOverride ALL
Order allow,deny
Allow from all
</Directory>
</VirtualHost>