Hi Guys,
I'm writing a page generation script based in mysql and php, I managed to did a lot but I still have problems if I'm trying to create more let's call it subdirectories based in the database tables. This is what I have and works well:
# BEGIN
<IfModule mod_rewrite.c>
RewriteEngine on
# Change following path
RewriteBase /something/
RewriteRule ^([A-Za-z0-9-]+)/?$ pagegenerated.php?id=$1 [L]
</IfModule>
# END
everything looks good even the rewriting in a seo friendly way:
www dot mysite dot com/something/page-a-about-something
my problem start when I add another links in that pagegenerated.php page and I want to display something like this:
www dot mysite dot com/something/page-a-about-something/page-b-about-that-last-page
any idea how can I fix this?
Thank you
J.
PS: Someone from syndk8 adviced me to post here
