2012-12-20, 16:14:56
(2012-03-24, 02:37:46)mvlcek Wrote: Doesn't it work with
?Code:RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /?([A-Za-z0-9_-]+);(\d+)/?$ index.php?id=$1&page=$2 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /?([A-Za-z0-9_-]+)/?$ index.php?id=$1 [QSA,L]
Used config:
- gs 3.1.2
- i18n with custom link structure: /%slug%html
- nested page (2nd lvl) contains only _pagify tag to be used with ckeditor's hr button
I followed the instructions for the Pagify plugin (modify gsconfig, htaccess, etc.) and have had some success. I can get the plugin to work when I turn off fancy URL's. However, when I enable the fancy URL's the second, third, fourth pages (etc.) do not appear and I get the message "Oops! Page not found!".
My rewrite condition differes slightly. I have the rule enabling html as an extension.
I believe the rewrite rule is where the issue is. The resulting URL generated is: "http://localhost/usedconecrushers/test.html;2"
I would welcome any feedback as to what the issue might be that is preventing secondary pages from appearing.