Hi Everyone (this may be my first post on here - been browsing for a while)
Anyway, im after a little help with my mod_rewrite.... Here's what I've already written, and it works well (should give everyone an idea of what I'm trying to do)
Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?signhereuk\.com$ [NC]
RewriteRule ^(.*)$ http://www.signhereuk.com/website/signhere/$1 [L]
Right the above takes the
www.signhereuk.com website and redirects it to a directory on my web hosting
www.signhereuk.com/website/signhere/
Now the above is correct, but i would like it if the url would not show the website/signhere/ directories (as if visiting
www.signhereuk.com just shows the base directory)
I would also like it to show all the index.php files (not just rewrite all pages to show just the
www.signhereuk.com domain)
Hope that makes sense (ignore the spaces in the URL's as it wont let me post links)
Cheers
James