Forum Moderators: open
What are the 3 most important points that I should request? What are the most important things to avoid?
The Big Question:
I have a "frame" in my graphic design: a border on top and on the left hand side. Text appears in a text window.
How does the programmer set up the border without using Frames and making the SEs mad?
I want to use each article in multiple "magazines" on the same site. To avoid the duplication filters, I will have each article available at a unique url. The different "magazines" can link to the article-url to display the article. This means, essentially, displaying the contents of one url inside the border supplied by the Magazine.
What are the 3 most important points that I should request?
First and foremost, ISAPI_Rewrite.
Second, valid html.
Third, http compression.
What are the most important things to avoid?
First and foremost, custom 404 scripts used to redirect users.
Second, improper URI structure.
Third, invalid html/xhtml.
One more item. I would like to share Articles among several publications on the site. But I need to avoid G's duplicatino filter.
So I am telling the programmer to send each Article to its own url. Then each publication will display the Article within the header and left border that are distinctive to the publication.
In other words the publication will go to the Article, instead of the other way around.
Does this make any sense? And will the header.asp and footer.asp make it happen?
my question is this:
pageoneresults, Would you suggest a different top 3?
I'm not at all familiar with aspx - can you say "sink, or swim?"
thanks
only the home page has a 9. the level 2 pages have 8s.
from there i stop using the pr bar...everything has a 0...but is performing like a high pr7.
i"ll take your advice and keep "well enough alone" and put my focus on adding to the existing structure. in another forum standalone subdomains, supported only by a lone high pr site, was also suggested as a means of extending the site.
thanks
First and foremost, ISAPI_Rewrite.
From what i can read on the web, this is similar to mod_rewrite? Do you have any advice for practical implementation? Of most concern to me running IIS and ASP is ensuring [example.com...] is forwarded to [example.com...] . ( avoid dup penalties or problems associated with poorly formed inbounds ).
Ta
David
[edited by: Xoc at 6:38 pm (utc) on Jan. 10, 2005]
[edit reason] changed to use example.com [/edit]
From what i can read on the web, this is similar to mod_rewrite?
Very similar, they both serve the same function.
Do you have any advice for practical implementation? Of most concern to me running IIS and ASP is ensuring [example.com...] is forwarded to [example.com...]Two lines in the httpd.ini file and you are good to go for the above issue...
RewriteCond Host: ^example\.com
RewriteRule (.*) http\://www\.example\.com$1 [I,RP][edited by: Xoc at 6:39 pm (utc) on Jan. 10, 2005]
[edit reason] changed to use example.com [/edit]