@Yankidank
Before I thought my issue is causing by I've been modified html1.php and .htaccess (remove "Category" word) I also see other threads about foreign character category urls but I don't think it's same to me because my normal category links working... Anything, I found that because I haven't upgrade to latest svn.
@jongaa
In your suggestion above, why you leave these 2 lines in .htaccess
Code:
RewriteRule ^category/([^/]+)/?$ index.php?category=$1 [L]
RewriteRule ^category/([^/]+)/([^/]+)/?$ story.php?title=$2 [L]
Why don't you remove it because these lines make duplicate content
Example:
When you go hxxp://pligg.com/internet ---> This Worked
But when you go hxxp://pligg.com/category/internet ---> This Worked also
So it make duplicate content
But if you remove these 2 lines in .htaccess
You will have only one category permalink
When you go hxxp://pligg.com/internet ---> This Worked
But when you go hxxp://pligg.com/category/internet ---> This Not Work Anymore
And I'm not clear about these lines that you told
Code:
RewriteRule ^(all|category_01|category_02|category_03|category_XX)/?$ ?category=$1 [L]
RewriteRule ^(all|category_01|category_02|category_03|category_XX)/([^/]+)/?$ story.php?title=$2 [L]
"Add below"
Code:
RewriteRule ^category/([^/]+)/([^/]+)/?$ story.php?title=$2 [L]
These lines will deplicate with
Code:
##### You can find the below lines pre-made for you in the category management section of the admin panel ######
RewriteRule ^(all|technology|music|news|entertainment)/([^/]+)/?$ story.php?title=$2 [L]
RewriteRule ^(all|technology|music|news|entertainment)/?$ ?category=$1 [L]
#####
Or not (See example of my .htaccess in above rep)
Thanks