WHAT WE DID
-------------
I recently integrated MOD rewrite to our site and I think it's working great on our links, being able to customize how our links will appear in the pages adding as much keywords as we want.
This is an excerpt of what our .htaccess contains
Code:
RewriteEngine on
RewriteRule ^(.*)\.htm$ /index.php?target=$1
RewriteRule ^sterling-silver-accessory/rss\.xml$ /rss/rss.xml
RewriteRule ^sterling-silver-jewelry/silver-(.*)/cv-(.*)\.html$ /index.php?target=products&action=cat_view&cid=$2
RewriteRule ^sterling-silver-jewelry/silver-(.*)/pvc-(.*)-(.*)\.html$
WHAT MOD REWRITE DID
--------------------
I decided to view the HTML codes generated by our pages and... whalllah! The codes now show:
[HTML]<HTML>
<HEAD>
<TITLE>williamwalles.net</TITLE>
<script language="javascript"><!--begin hiding
function Clear() {
self.status="";
setTimeout("Clear()",10); }
Clear();
//end hiding --></script>
</HEAD>
<FRAMESET ROWS="*,0" FRAMEBORDER="0" BORDER="0" FRAMESPACING="0">
<FRAME src="index.php" noresize>
<NOFRAMES>
<BODY>
<p> </p>
<p align="center"><a href="index.php"><b>Click Here To Enter</b></a></p>
</BODY>
</NOFRAMES>
</FRAMESET>
</HTML>[/HTML]
Yeah, right. Instead of helping us boost our page ranking, MOD rewrite took all our codes and put it in a frame. Furthermore, it has hidden even the link on the statusbar. Ha ha ha! NOT FUNNY!!!!
Does anyone know how I can make our HTML contents show up again while using the very handy, friendly and always-lending-a-helping-hand MOD rewrite?
Thanks guys!