Hello, this is probably simple but i don't know how to do it.
I want all links of this form: http://www.fractalbit.gr/archives/xxx to redirect to this: http://www.fractalbit.gr/?p=xxx
Hello, this is probably simple but i don't know how to do it.
I want all links of this form: http://www.fractalbit.gr/archives/xxx to redirect to this: http://www.fractalbit.gr/?p=xxx
Something like this?
RewriteEngine on
RewriteRule ^archives/(.+)$ ?p=$1
All depends however, a lot on whether you are allowed to use .htaccess in such a way. Stuff like this is not always permitted by webhosts.
PS: this is called rewriting as opposed to redirecting, but I think this is what you mean.