Hey guys
i have a Problem,
As you know indexu has "http://mysite.com" paths but i wanted to change this to "http:www.mysite.com"
I tried some htaccess modifications and could get it to work, but when a User clicks on "add a listing" and choose a category. He is redirected back to add.php, i switched back to the original htacces which looks as follows:
# INDEXU-START
php_value error_reporting 7
# DO NOT CHANGE THE FOLLOWING LINES
# status: 1
# pattern_category: {$cat_path}/more{$page}.html
# pattern_detail: detail/{$link_id}/{$link_title}.html
Options -MultiViews
RewriteEngine On
RewriteRule ^detail/(.*)/(.*).html detail.php?linkid=$1
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^.* browse.php
# INDEXU-END
So does anybody have perfect piece of code for that 301 Redirect?



