2012-02-08, 18:38:49
(This post was last modified: 2012-02-08, 18:41:54 by marvinobrador.)
Well, I figured it out.
For the pattern: page/%slug%
You should put this on your configuration file:
If you're using News Manager with permalinks use this:
Don't forget that you should change the paths to suit your install.
For the pattern: page/%slug%
You should put this on your configuration file:
Code:
url.rewrite-once = (
"/test/page/(.*)" => "/test/index.php?id=$1"
)
If you're using News Manager with permalinks use this:
Code:
url.rewrite-once = (
"/test/page/test123post/(.*)" => "/test/index.php?id=test123&post=$1",
"/test/page/(.*)" => "/test/index.php?id=$1"
)
Don't forget that you should change the paths to suit your install.