Hi......Friends
Please can anyone to help me to change my url as permalink. My URL is http://www.moswap.in/ , when am click on cell phone page its showing like this(http://www.moswap.in/i/?cell-phones), but want to only like this http://www.moswap.in/cellphones so, please help me friends.
Thanks in advance.

What have you got in a .htaccess file?

You could do this:

RewriteEngine on
RewriteCond $1 !\.(js|ico|gif|jpg|png|css|html|swf|mp3|wav|txt)$
RewriteRule ^(.*)$ index.php?p=$1 [L]

It will apply the rewrite rule if the url doesn't have any of the above file extensions, so yoursite.com/cell-phones would go to yoursite.com/index.php?p=cell-phones.

If you wanted additional parameters: yoursite.com/cell-phones&brand=XYZ goes to yoursite.com/index.php?p=cell-phones&brand=XYZ.

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.