Вопрос

How to limit to 4 the number of words in a slug using htaccess only?

from

exemple.com/hello-world-how-are-you

to

exemple.com/hello-world-how-are
Это было полезно?

Решение

This sounds like a problem you need to fix in your code/database, not via .htaccess. It will cause a lot of extra (useless requests). A rule that would accomplish this would for example be:

RewriteRule ^([^-]+(-[^-]+){3})-.*$ /$1 [R,L]
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top