I have a problem.. this is my htaccess file:
Redirect 301 /forum/index.php?/topic/114-php-and-xml/ /forum/php/31-php-xml.html
but it doesn't redirect to there.. Can you give me a solution for this..
Thank you
Guest_Jaan_*
Redirect 301 /forum/index.php?/topic/114-php-and-xml/ /forum/php/31-php-xml.html
|
|
|
Redirect 301 /forum/index.php?/topic/114-php-and-xml/ http://yoursite.com/forum/php/31-php-xml.html
Guest_Jaan_*
Redirect 301 /forum/index.php?/topic/114-php-and-xml/ http://mysite.com/forum/php/31-php-xml.html
Redirect 301 /forum/topic/114-php-and-xml/ http://mysite.com/forum/php/31-php-xml.html
Guest_Jaan_*
Guest_Jaan_*
RewriteCond %{QUERY_STRING} /topic/114-php-and-xml/
Redirect 301 /forum/index.php http://mysite.com/forum/php/31-php-xml.html
RewriteCond %{QUERY_STRING} /topic/114-php-and-xml/
RewriteRule ^forum/index.php$ http://mysite.com/forum/php/31-php-xml.html? [L,R=301]
Guest_Jaan_*
RewriteCond %{QUERY_STRING} /topic/114-php-and-xml/
RewriteRule ^forum/index\.php$ http://mysite.com/fo...1-php-xml.html? [L,R=301]
http://mysite.com/forum/index.php?/topic/114-php-and-xml/
http://mysite.com/forum/php/31-php-xml.html
RewriteEngine on
Guest_Jaan_*