Hi. I own a blog, www.search4anime.com and currently, to browse it for downloads, you have to go through a number of pages. So if you were to go to Anime Downloads, Completed Anime Downloads, Choose a Letter, and then go to the anime you want, you would end up at something like this http://www.search4anime.com//?page_id=17 I have tried using the custom feature in the options for the permalinks, setting it to /%pagename%/%pagename%/%pagename%/%pagename%/%pagename%/ Which made it work, but then the posts, if you click on them don't work. I want it to allow me to have the anime stuff down right, but also the posts to work properly. can anyone help me do this, or would i have to use an .htaccess file for this? and How would I do that?
Not sure what you mean, but i think it woudl be like this www.search4anime.com/animedownloads/completedanime would the only way to do this be with .htaccess , and i'd have to do it for every url? That would be very bad and inefficient. Is there a better way? Cause I would be adding about 10 or so links every day, constantly.
You would have to have the number be in the URL then you could do it with one line. You would have to know how to edit the script to link that way. Options +FollowSymLinks +Indexes RewriteEngine on RewriteBase / RewriteRule ^([^.]+)/([^.]+)/([^.]+)\.html$ showproducts.php?cat=$1 [L] domain.com/17/animedownloads/completedanime
Hmm. But they are all different numbers though. Like for each anime title, there is a different number. I think i have around 200 so far, and i've only got up to F done for completed anime. I was hoping there was a way to do it with the wordpress permalinks thing.
so doesn't it mean that it will change everything into the url domain.com/17/animedownloads/completedanime ?
domain.com/17/animedownloads/completedanime domain.com/16/toydownloads/moreanime domain.com/15/morestuff/evenmorestuff would just need one line. The script has to be edited to make the URLs link correctly.