apache - URL Rewriting with Wordpress -
i have wordpress running on apache, have url 1 :
and want :
i tried different things such :
rewriterule ^?type=manger$ manger/
but it's not working, 1 example i'm getting 500 error, , nothing. don't know if it's htaccess config, or because it's wordpress, or because i'm stupid ! :/
thanks !
use rule in .htaccess
instead:
rewriterule ^fr/([^/]*)$ /fr/?type=$1 [l]
make sure clear cache before testing this.
Comments
Post a Comment