Simple Help with htaccess
I need some help with a redirect:
How do I take any URLs with www开发者_StackOverflow社区.example.com/blog/ and anything else after it, (.*) and strip it down to just the text after /blog/?
I've never really done rewrites, so please help.
RewriteEngine On
RewriteRule ^blog/(.*)$ index.php?$1
精彩评论