Now I have been scouring the web for what seems to be a mystery or maybe I am searching for the wrong things, but does anyone know of any good Object Oriented ways on managing "Pretty URLs' in PHP using Apache Mod Rewrite that can run dynamically i.e a database such as MySQL?
I have been trialing some methods with my current but "limited" know-how of PHP. I understand that with this .htaccess file you can request all URLS to one file whilst accessing other folders as long as they exist:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
</IfModule>
Thats all fine and dandy. I also know that you can explode the server path like so:
$path = explode('/', $_SERVER['PATH_INFO']);
I am looking for something similar in terms of functionality how WordPress handles it's permalink system, you are able to create pretty much any URL and the system will know how to handle the request and also how to display + write the URLS when requested for redirects or on page.
Is this asking to much? Or do I need to re-invent the wheel as such? This has been bugging me for a long time that I cannot find a scalable solution that can I can use 'out of the box' and customize to my needs - maybe there is and you can enlighten me? ;)
I was thinking you could somehow define rules via:
$rewrite_object->addRule(array(
'Page' => array(
'label' => 'Page',
'rewrite' => '/'
)
));
This would be controlled by a class instance from the example of above but hopefully you can see what I am trying to put across.
I hope I have explained this as much as possible! To clarify - I NEED a solution for creating a structured, easy to maintain, highly extendable way of creating SEO friendly URLs for a variety of content, whether it be: articles, pages, categories or whatever you can think of.
I look forward to your thoughts!