and actually i convert the url with javascript
<script type="text/javascript">
$(document).ready(function() {
$('.search-form').submit(function() {
var value = $('.search-form input:text').val();
value = value = value.replace(/\W/,''); // replace
window.location.href = value + "-keyword" + ".html";
return false;
});
});
</script>
is there a method to convert the url seo-friendly without javascript? maybe with php?
I am for the following technique because
Here goes: