Hiring [Trading]WCDDL expert

Status
Not open for further replies.

CoolBird

Banned
Banned
52
2009
0
0
Hello, I need some changes of my site "perfectddl.com"

When i click on any type such as app , games, etc .. it opens the following link .
"http://www.perfectddl.com/index.php?type=App"

But i want this page like this


" http://www.perfectddl.com/softwares.html "

What u will get :

1 Year link spot (No. 1 position) " side bar" on perfectddl.com


Note: Some problem with my CC. thats why i cant pay u . So dont ask for money .


Plz help me....
 
6 comments
Create a htaccess file and in it put the following:

Code:
RewriteEngine On

# Type URLs
RewriteRule ^software.html$ index.php?type=app
RewriteRule ^games.html$ index.php?type=game
RewriteRule ^movies.html$ index.php?type=movie
RewriteRule ^tv-shows.html$ index.php?type=tv
RewriteRule ^music.html$ index.php?type=music
RewriteRule ^templates.html$ index.php?type=template
RewriteRule ^ebooks.html$ index.php?type=ebook
RewriteRule ^other.html$ index.php?type=other

#Site URLs
RewriteRule ^site/(.*)/([0-9]+)$ index.php?page=$2&bysite=$1
RewriteRule ^site/(.*)$ index.php?bysite=$1

For the Site ones I've included it will have the following format

Code:
http://example.com/site/warez-name.com
and if their are lots of pages it will be:
Code:
http://example.com/site/warez-name.com/7
http://example.com/site/warez-name.com/34

Then upload that to your domain root. and it will work. If you need any other htaccess or re-write rules and can't find them in Google create a topic in the coders area here on WJ.
 
Cheers gunda316 thanks :)


OK I've just checked your site CoolBird and you already have the name.com/site/ ones so instead use these ones for the recent searches.

Code:
RewriteRule ^search/(.*).html$ index.php?q=$1

So the extra stuff you need to add to your htaccess file now is:

Code:
# Type URLs
RewriteRule ^software.html$ index.php?type=app
RewriteRule ^games.html$ index.php?type=game
RewriteRule ^movies.html$ index.php?type=movie
RewriteRule ^tv-shows.html$ index.php?type=tv
RewriteRule ^music.html$ index.php?type=music
RewriteRule ^templates.html$ index.php?type=template
RewriteRule ^ebooks.html$ index.php?type=ebook
RewriteRule ^other.html$ index.php?type=other

RewriteRule ^search/(.*).html$ index.php?q=$1

The recent searches will now change from something like:

Code:
http://www.perfectddl.com/index.php?q=photoshop_cs4

to something like
Code:
http://www.perfectddl.com/search/photoshop_cs4.html
 
Mr Happy that was a tremendous reply, I'm not sure if people say it enough, but your replies are always informative and well thought of.

Great to have you here, really.
 
Status
Not open for further replies.
Back
Top