my site is laid out like so:
public_html/index.php
public_html/everythingelse/(all other files here)
Im trying to figure out how to remove everything in the browser's url bar after the .com in my site. so,
http://mysite.com/everythingelse/blah.php
would be rewritten as:
http://mysite.com
and http://mysite.com/index.php
would also be rewritten as:
http://mysite.com
I also have a fixed ip and ssl, and would like to redirect all traffic to everything except mysite.com/index.php to https. so, everything inside of my everythingelse folder is not accessible via regular http, only via secure https
anybody know the htaccess rewrite engine well enough to be able to do this?
public_html/index.php
public_html/everythingelse/(all other files here)
Im trying to figure out how to remove everything in the browser's url bar after the .com in my site. so,
http://mysite.com/everythingelse/blah.php
would be rewritten as:
http://mysite.com
and http://mysite.com/index.php
would also be rewritten as:
http://mysite.com
I also have a fixed ip and ssl, and would like to redirect all traffic to everything except mysite.com/index.php to https. so, everything inside of my everythingelse folder is not accessible via regular http, only via secure https
anybody know the htaccess rewrite engine well enough to be able to do this?