Im having a problem with my 301 not being detected in my file, almost like the code isnt there Im tryin to have everything using this path mysite.com/page redirected to mysite.com/blog and ive put it in different areas of the file but no luck
this is my code, am i doing something wrong?
RewriteRule ^page/([A-Za-z0-9]*)/$ /blog/$1 [NC]
and you can see my code here on line 68
http://pastebin.com/tvaXbLxw
The problem is that your
RewriteRuleexpects a trailing slash. If your URL is like:… it will work, while this:
… will not. Try this instead:
It will match against any of those URLs:
Note: You may want to use the
Lflag as well: