Results 1 to 5 of 5
Hybrid View
-
10th Apr 2011, 06:45 PM #1OPBannedWebsite's:
perfectddl.comNeed Help
Hello, I have created the category pages and edited .htaccess file with codes provided by Mr.Happy.
http://www.besthostingforums.com/showthread.php?t=77208
its working fine.
But here is some problem with pagination.
Suppose i open :
http://perfectddl.com/softwares.html
when i go to page 2 or 3 .... its shows title of the index page.
It should shows the title of software page...
plz help me.CoolBird Reviewed by CoolBird on . Need Help Hello, I have created the category pages and edited .htaccess file with codes provided by Mr.Happy. http://www.besthostingforums.com/showthread.php?t=77208 its working fine. But here is some problem with pagination. Suppose i open : http://perfectddl.com/softwares.html Rating: 5
-
10th Apr 2011, 07:10 PM #2Respected DeveloperWebsite's:
wrzc.orgForgot about the different pages for you.
OPTION 1
Code:RewriteRule ^(.*)-page-([0-9]+).html$ index.php?type=$1&page=$2
Code:http://example.com/movie-page-3.html http://example.com/music-page-12.html http://example.com/ebook-page-234.html http://example.com/app-page-234.html
That's when you try and have one rule for each. The other option is to have a rule for each type which gives you more flexibility and let's you customize it more.
Code:RewriteRule ^movies-page-([0-9]+).html$ index.php?type=movie&page=$1 RewriteRule ^music-page-([0-9]+).html$ index.php?type=music&page=$1 RewriteRule ^software-page-([0-9]+).html$ index.php?type=app&page=$1 etc..
Code:http://example.com/movies-page-3.html http://example.com/music-page-12.html http://example.com/ebooks-page-234.html http://example.com/software-page-234.html
Expanding on option 2 we can change the format of the url
Code:RewriteRule ^movies/([0-9]+).html$ index.php?type=movie&page=$1 RewriteRule ^music/([0-9]+).html$ index.php?type=music&page=$1 RewriteRule ^software/([0-9]+).html$ index.php?type=app&page=$1 etc..
Code:http://example.com/movies/3.html http://example.com/music/12.html http://example.com/ebooks/234.html http://example.com/software/234.html
Expanding on option 3 we can change the format of the url
Code:RewriteRule ^movies/page-([0-9]+).html$ index.php?type=movie&page=$1 RewriteRule ^music/page-([0-9]+).html$ index.php?type=music&page=$1 RewriteRule ^software/page-([0-9]+).html$ index.php?type=app&page=$1 etc..
Code:http://example.com/movies/page-3.html http://example.com/music/page-12.html http://example.com/ebooks/page-234.html http://example.com/software/page-234.html
That should be more than enough of a choice
rep meTutorial How to SEO your Warez Site a guide to help you increase your organic traffic
Huge list of Warez Sites and free Multiposter Templates
-
11th Apr 2011, 05:03 PM #3OPBannedWebsite's:
perfectddl.comThanks Mr Happy. Its now working f9.
I need another help.
How to add title for sites download.
i want the title should b like ABCWarez[means site name]@ Downloads
http://www.perfectddl.com/site/pinoy-warez.com
note: i have separate file (site.php) and need to set title here.
BTW Mr. Happy may i get ur msn plz ?
-
11th Apr 2011, 05:13 PM #4Member
-
11th Apr 2011, 05:33 PM #5
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
themaCreator - create posts from...
Version 3.47 released. Open older version (or...