Hello, how can I redirect:
to:
http://mysite/2006/10/15/steve/
Basically, I want a user to be able to type a direct URL for a specific topic ("Steve" in this case) and be taken to a specific post.
Hello, how can I redirect:
to:
http://mysite/2006/10/15/steve/
Basically, I want a user to be able to type a direct URL for a specific topic ("Steve" in this case) and be taken to a specific post.
You can use htaccess. You have to add lines like
RewriteEngine on
RewriteRule ^/(.*) http://mysite/2006/10/15/steve/$1 [L,R]
have a look at
This topic has been closed to new replies.