caravanguard
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Category and Posts issueI initially thought it was on 3.1.1 like the other WP installtion we have it – turns out it is on WordPress 3.0.3. Will this have any bearing on things????
Forum: Fixing WordPress
In reply to: .htaccess issues when applying a rewriteRule…Thank you Jan, I already had it all in root as well…
It has however made some progress. which is great :o) however I was expecting that when you when to park-home-insurance/faqs that it would display the content from Knowledgebase – or have I got it the wrong way around… I wasnt wanting to redirect.
Cheers
Forum: Fixing WordPress
In reply to: .htaccess issues when applying a rewriteRule…I thought we had cracked it for a minute there Jan. But alas I am afraid it is still not working :o( 404 is showing instead.
Could it be conflicting with any other .htaccess files created by WP…
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /knowledgebase/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /knowledgebase/index.php [L] </IfModule> # END WordPressForum: Fixing WordPress
In reply to: .htaccess issues when applying a rewriteRule…Still nothing seems to budge :o( I have removed the ^ symbol.
this is my new version of the htaccess rules
RewriteEngine On Options +FollowSymLinks RewriteBase / #Park Homes FAQ Rule RewriteRule /park-home-insurance/faqs/$ http://www.leisuredays.co.uk/knowledgebase/ [R=301,NC,QSA,L] RewriteRule /static-caravan-insurance/faq/$ http://www.leisuredays.co.uk/knowledgebase/ [R=301,NC,QSA,L]Forum: Fixing WordPress
In reply to: .htaccess issues when applying a rewriteRule…RewriteRule ^/park-home-insurance/faqs/$ http://www.domain.co.uk/knowledgebase/ [R=301]
Even this won’t work either
Forum: Fixing WordPress
In reply to: .htaccess issues when applying a rewriteRule…Cheers BeautyPirate,
Although that does work by redirecting I wanted to keep the url structure as per the rest of the site I am working with. Hence looking at the RewriteRule as the best option…
However, thank you ever so much for your solution above. I shall utilise this should I not find another method.