| Re: How do i redirect an old xoops page to main page ? |
| by blackrx on 2010/5/1 13:59:13 yes i use cpanel redirection and its working...thanks |
| Re: How do i redirect an old xoops page to main page ? |
| by sailjapan on 2010/3/16 12:54:23 If your host provides you with CPanel, there's a redirect function there that's easy to use. |
| Re: How do i redirect an old xoops page to main page ? |
| by Peekay on 2010/3/16 11:42:18 Apache Mod Rewrite needs to be enabled on your server which is not always the case. To test: le="color: #000000"><?php rewriteEngine on rewriteRule ^noexist.html$ http://www.mysite.com/doesexist.html [L] Upload 'doesexist.html', request the page 'noexist.html' in your browser and you should be redirected. If that doesn't work, try adding the 'symlinks' line, e.g. le="color: #000000"><?php Options +FollowSymLinks rewriteEngine on rewriteRule ^noexist.html$ http://www.mysite.com/doesexist.html [L]
|
| Re: How do i redirect an old xoops page to main page ? |
| by blackrx on 2010/3/16 6:22:20 thank you peekay but its not working
|
| Re: How do i redirect an old xoops page to main page ? |
| by Peekay on 2010/3/16 2:43:11 You can try le="color: #000000"><?php RewriteEngine on RewriteCond %{QUERY_STRING} ^id RewriteRule ^/modules/content/print.php$ http://www.mysite.com [L,R=301] But it's late and I am heading for bed, so you might want to see what others recommend! |