htaccess rewrite url and remove question mark |
[eluser]nabasa[/eluser]
Hi there, I need an htaccess 301 redirect for dynamic urls going from this url: http://www.example.com/index.php/?content/page1 to http://www.example.com/content/page1 My current htaccess rule is: RewriteBase / RewriteCond %{HTTP_HOST} !="" RewriteRule ^index.php(/.*)$ http://%{HTTP_HOST}$1 [R=301] the problem is I get urls like this: http://www.example.com/?content/page1 How can I remove that question mark (?) from the url. Also this is for about 20 different urls in this pattern. I would like the rule to work for all my urls needing to be 301 in this pattern. My problem is google has a bunch of urls with the index.php/? in them, and I need to 301 redirect them to the clean pages... but I keep getting the ? in the url. Can anyone give me a good htaccess rule to make this work for my clean CI urls? Thanks, Sean |
Messages In This Thread |
htaccess rewrite url and remove question mark - by El Forum - 10-27-2010, 02:15 PM
htaccess rewrite url and remove question mark - by El Forum - 10-27-2010, 11:59 PM
htaccess rewrite url and remove question mark - by El Forum - 10-28-2010, 12:25 AM
htaccess rewrite url and remove question mark - by El Forum - 10-28-2010, 12:38 AM
htaccess rewrite url and remove question mark - by El Forum - 10-28-2010, 12:52 AM
htaccess rewrite url and remove question mark - by El Forum - 10-28-2010, 01:04 AM
htaccess rewrite url and remove question mark - by El Forum - 10-28-2010, 01:11 AM
htaccess rewrite url and remove question mark - by El Forum - 10-28-2010, 01:38 AM
htaccess rewrite url and remove question mark - by El Forum - 10-28-2010, 01:45 AM
htaccess rewrite url and remove question mark - by El Forum - 10-28-2010, 02:15 AM
htaccess rewrite url and remove question mark - by El Forum - 10-28-2010, 10:05 AM
htaccess rewrite url and remove question mark - by El Forum - 11-30-2010, 11:51 PM
htaccess rewrite url and remove question mark - by El Forum - 06-06-2011, 11:33 PM
htaccess rewrite url and remove question mark - by El Forum - 06-07-2011, 07:03 AM
|