I´m using Indexu 5.3 and I have the following htaccess-file:
I manually added the RewriteRule ^information/(.*)/$ /page.php?id=$1PHP Code:# INDEXU-START
# DO NOT CHANGE THE FOLLOWING LINES
# status: 1
# pattern_category: browse/{$cat_id}/{$page}/{$cat_name}.html
# pattern_detail: detail/{$link_id}/{$link_title}.html
RewriteEngine On
RewriteRule ^detail/(.*)/(.*).html detail.php?linkid=$1
RewriteRule ^browse/(.*)/(.*)/(.*).html browse.php?cat=$1&pg_which=$2
RewriteRule ^information/(.*)/$ /page.php?id=$1
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
# INDEXU-END
and that works fine, but I can´t get the mod rewrite to work for detail and category pages. Can anyone help? The website is http://www.tjanstefolk.se/


