I am writting Code in PHP, and i want to give my user options to use SEO url or not to use SEO URL in admin panel.
he will be given .htaccess code to save in his current .htaccess page.
Now, by default there is no SEO URL.
Therefore I am coding in my php code like below >
<a href="<?php echo $domain."/".$cat_page.".php?id=".$cat_id."&title=".$title."&query=".$query; ?>/" ><?php echo $title; ?></a>
Now, When i have to allow the SEO Url,
How can i implement below link automatically, without editing any code and even in view source the SEO link is shown like below >
<a href="<?php echo $domain."/".$cat_page.".php/".$cat_id."/".$title."/".$query; ?>/" ><?php echo $title; ?></a>
Do i need to save the SEO code in database column. If yes how can i guess the SEO URL before the title and category is added.
IF on fly how can i implement the code in all pages whenever pages are requested.
Don't tell me , you have to do with .htaccess I know that, but whenever i load my page, in view source non-seo urls are shown and .htaccess has no effect too.. I want to show seo url in view source too.. How should i write in my php code, Give me Idea, so that i can start writting code for that and show you.
Thanks.
This is Deep request to all moderators and staff to not close this thread saying duplicate or useless or FAQ, I am Damn Serious and i want to learn it tonight, It has been too much pain in my ass and i can't find right solution till now.
I request all knowledgable LEETS , ELITES of PHP to help me in this.
Thanks once again
