Hi
This is scorpionz
Hope everyone is fine.

Here is the reason of this thread:

I have a site with such url:

http://www.testsite.com/details.php?cart=44

this is a site definitely giving the result of some detail page. means specific Product details.
Let suppose having Product name: Xyzabc
now i want this link to be in this way:

http://www.testsite.com/Xyzabc

Will this be possible?
If Yes than How?

Any response will be highly appreciated.

Regards
scorpionz

Yes, first make sure ModRewrite is enabled on your server.

Then use .htaccess to rewrit urls.

Then something to this effect:
Options +FollowSymLinks
RewriteEngine on
RewriteRule details-cart-(.*)\.html$ details.php?cart=$1

It would make it SEO friendly. I think that's what you are after.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.