By programmer247 on
I have a default drupal site install which i am carrying out some tests on and i noticed the clean URL setting so turned it on and it just takes out the ?q= in the URL for admin pages.
For my site pages the URL is domain.com/node/1
Is there a module or some way to get this as an SEO friendly URL such as a page being called UK Cars and the URL being domain.com/uk_cars
Any suggestions?
Cheers
Comments
Pathauto module
http://drupal.org/project/pathauto should do what you need.
how to regenerate seo url in drupal
Hi,
I am new in drupal, have SEO URL Problem like:
http://www.urpets.org/?q=qa/why-my-dog-eats-everything-he-finds
http://www.urpets.org/?q=content/how-mare-acts-their-estrous-cycle
as give above link are now running but i want to regenerate all previous contents URL like:
http://www.urpets.org/qa/how-mare-acts-their-estrous-cycle
http://www.urpets.org/blog/how-mare-acts-their-estrous-cycle
http://www.urpets.org/news/how-mare-acts-their-estrous-cycle
Please suggest me
Thanks
You only need the core
You only need the core module "Path", when its enabled a new field appears on node/add forms where you can enter a path alias.
Pathauto is good if you want your paths written automatically using token replacement (requires the token module), for smaller sites I just use Path, I only use Path auto for larger site with a lot of publishing activity.
Pimp your Drupal 8 Toolbar - make it badass.
Adaptivetheme - theming system for people who don't code.
My understanding is that
My understanding is that pathauto is for automatically generating such URLs, so it's more than programmer247 is asking for.
When you create or edit your content there's a place on the form where you can enter the URL you want. You enter it without the domain and leading slash, so you'd just put in
uk_cars. You may have to click on a dropdown to see that part of the form.I ended up using path,
I ended up using path, pathauto + token and went with the automated solution which works great.
Thank you to all who posted