I want to convert a the following URL
http://mughalspak.com/index.php?func=page_cms&cat_id=8&page_id=33&page_banner_image=
to
I want to convert a the following URL
http://mughalspak.com/index.php?func=page_cms&cat_id=8&page_id=33&page_banner_image=
to
use htaccess Example
or you can use something below to generate friendly URL
STEPS
use .htaccess to rewrite url, and link to a specific php file to identify the actual page.
RewriteEngine On
RewriteRule ^([a-zA-Z0-9-/]+)$ index.php?func=redirectpage&var=$1 [L]