I'm trying mod re-write for the first time, and a shared server, using .htaccess.
It seems to work, however the re-directed pages don't load the css, and all the links have a portion of the non-rewriten url in them. For example a link that is an include that simly says <a href="index.htm"> ends up as domain.com/Tag/T/index.htm. Request_URI shows the non-re-writen url, which doesn't seem right considering I didn't think PHP was supposed to see those.
Tag/T/ seems to get appended to the end of the domain for all links.
Here's an example of the trouble code:
RewriteRule Tag/T/(.*).htm$ /tag.php?Tag=$1 [L]
Aside from this, everything seems to work, and my scripts are able to pull the re-writen paramaters and load everything else on the page as normal. When I load the standard .php? page, everything works as usual.
Thanks