We've known now for a couple of years that descriptive URLs
are a much greater asset than numeric URLs, or dynamic URLs.
For example, take a look at a URL such as:
YOu see how easy its read and can be remembered? Also notice
the keyword placement in the URL.
Now, an un-optimized URL such as:
And we know that dynamic ones are even worse as far as human
(and SEO) reading is concerned.
What I do (with my WordPress sites) is use two variables for my URLs:
Which will give you:
Pretty cool! You can configure your URLs via the admin's
Permalink options.
are a much greater asset than numeric URLs, or dynamic URLs.
For example, take a look at a URL such as:
Code:
/company/starbucks/
the keyword placement in the URL.
Now, an un-optimized URL such as:
Code:
/4632/9393os/
(and SEO) reading is concerned.
What I do (with my WordPress sites) is use two variables for my URLs:
Code:
%category%
Code:
%postname%
Code:
YourSite.com/YourCategory/YourPostname/
Permalink options.