Hi,
I can create these links with JSitemap Pro
http://www.interimcarriere.be/voor-werknemers/vacatures/010713-A53
And those work.
But my component creates these urls, with the jobname added to the end. After an underscore.
http://www.interimcarriere.be/voor-werknemers/vacatures/010713-A53_interim-manager
When I alter the Auto-generated SQL raw query to:
| Code: |
CONCAT_WS('_', `#__sa_jobs_vacatures`.`vacaturenummer`, `#__sa_jobs_vacatures`.`alias`) AS `vacaturenummer`
|
The underscore is converted to a dash.
This way the url gets like this:
http://www.interimcarriere.be/voor-werknemers/vacatures/010713-A53-interim-manager
And my router can't split the urls parts (jobnr & jobname) because the underscore is gone.
Is there an option where I could fix this?
Regards,
Gosling