I'd be inclined to remove the decimal point.. reduces the URL by 1 character Use the title & meta tags for this
Moz Q&A is closed.
After more than 13 years, and tens of thousands of questions, Moz Q&A closed on 12th December 2024. Whilst we’re not completely removing the content - many posts will still be possible to view - we have locked both new posts and new replies. More details here.

Posts made by wojkwasi
-
RE: Ok to Put a Decimal in a URL?
-
RE: How get rid of duplicate content, titles, etc on php cartweaver site?
I'm guessing the paths used to reference the images & css files are relative to the the results.php file.. now that there are "/"s the best thing to do is to change the template to either hard code an absolute path or use forward slash at the start to always start at the root.. eg
Old code:
New code
or
-
RE: How get rid of duplicate content, titles, etc on php cartweaver site?
No worries
Look forward to seeing the site with the new URLs in place - a lot of great photos on that site that need to be shared with everyone
-
RE: How get rid of duplicate content, titles, etc on php cartweaver site?
There are 2 issues here:
-
Need to fix the URLs for better user experience & search engines and can do so by using rewrite rules in htaccess
The one suggested by the support forum (I've modified to better match your site but it's untested):
RewriteEngine on
RewriteRule ^photographer/([a-zA-Z0-9_-]+)/([0-9]+).php$ results.php?category=$2 The URLs would then be:
http://www.bartramgallery.com/photographer/charles-cramer/10.php (not ideal with "/10.php" at the end but may be best given the limitations of the cart)
rewrites to: http://www.bartramgallery.com/results.php?category=10 -
Clean up the Google index (remove old URLs & add new ones)
Since both URLs will render the same content we can fix by adding a
tag - attributing 1 source to the duplicate content - check if you can do this dynamically in the templates but be very careful not to canonical everything to the homepage or all your pages will be wiped out the index except the home page!)
-
-
RE: URL best practices, use folders or not ?
Think about it from the user's point of view. What would work best for them? Maybe even get some feedback from some site users if possible
-
RE: URL best practices, use folders or not ?
Will the site categories/products grow? If so, then the slash could be used to organise the structure & prepare for the future
In the example, you presented:
- www.example.com/accounts-titanium
- www.example.com**/**accounts/titanium
These are the same length & make no real difference
When we compare these 2, however:
You can see that #1 is shorter, doesn't repeat keyword (even though they are plural) & would be more likely clicked in the SERPs
Does that help some more?
-
RE: URL best practices, use folders or not ?
I'd use folders or categories if the amount of products/items is large and/or going to expand
If it's a small amount & finite then make the URLs as short as possible
-
RE: How get rid of duplicate content, titles, etc on php cartweaver site?
My pleasure
If you set up redirects, you shouldn't loose any traffic
This can also be controlled via htaccess
In google, search for this "site:bartramgallery.com" (without the double quotes) & you will see all the pages you need to redirect
I see the Charles Cramer page as the first photographers page that comes up & the redirect would be something as simple as:
Redirect 301 /results.php?category=10 http://www.bartramgallery.com/charles-cramer
-
RE: How get rid of duplicate content, titles, etc on php cartweaver site?
I'm not familiar with Cartweaver but these are just guides..
First define an organised URL structure - on bartramgallery.com, at a quick glance, a good one could be:
-
bartramgallery.com/photographer (e.g. bartramgallery.com/gordon-michael)
-
bartramgallery.com/photographer/photo (e.g. bartramgallery.com/gordon-michael/juniper-study-joshua-tree)
OR
bartramgallery.com/landscape-photography/photo (e.g. bartramgallery.com/landscape-photography/juniper-study-joshua-tree)
Keep in mind that the shorter URLs the better (could even have bartramgallery.com/photography/juniper-study-joshua-tree)
Second, rewrite the URLs using Rewrite Rules in the htaccess file (see this post: http://www.seomoz.org/blog/rewriterule-split-personality-explained)
I did a search on the Cartweaver support forums and found this:
http://forums.cartweaver.com/topic/google-analytics-identifying-products-and-categoriesOli, from the Cartweaver Support Team, seems to suggest the same "untested" approach as above
Let me know if you need any further help
-
-
RE: Old Redirecting Website Still Showing In SERPs
@Simon agreed - could be a 302 & check WMT
Also, it may not be a bad thing having results in position #1 & #2 in the SERPs
Means your client has listings in the best positions
Another option could be to use a rel=canonical to wipe the site out very quickly - see Rand's example of how he removed his old blog: http://www.seomoz.org/blog/cross-domain-canonical-the-new-301-whiteboard-friday (generally, be extremely cautious with this approach but given your goals , i.e. remove site from index, it should be fine)
-
RE: Header Tags
Order of heading tags is important... use CSS to control size & tags other than headings!
Think of a HTML doc as you would any other academic document..
Animals
Cats
Red Cats
Pink Cats
Dogs
Round Dogs
Square Dogs
..you get the idea
-
RE: Replace Header Text With Image
To achieve a balance between visual aesthetics and search engine interoperability, you could use a Javascript font renderer like cufon: http://cufon.shoqolate.com/generate/ - which will give you nice anti-aliasing.
Look at Google Fonts too - http://www.google.com/webfonts#ChoosePlace:select
I would redesign & work towards getting a H1 on there rather than working backwards
-
RE: Urls with or without .html ending
Generally the shorter the URL the better - both from an indexing & usability perspectives..
Also, shorter URLs attract higher click-thru rates
Further discussion/reading:
-
RE: Will using a service such as Akamai impact on rankings?
Thanks, makes perfect sense