pbcunningham
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Site Becomes A Mess Without The Slash On The EndI tried to force a trailing slash onto the site by using the .htaccess file. Whilst it seemed to resolve the display issues it had a side effect.
With the trailing slash forced via the .htaccess the display was now ok but if you click on a link to read a post it would not go to the post.
Below is what my .htaccess file looks like – forgive me I know absolutely nothing about these files. Everything that is in there has been put in by wordpress.
AddType application/x-httpd-Miva cp
Action application/x-httpd-Miva /cgi-bin/tHg
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
# These Rules redirect all feed Traffic to FeedBurner
RewriteBase /
RewriteCond %{QUERY_STRING} ^feed=(feed|rdf|rss|rss2|atom)$
RewriteRule ^(.*)$ https://feeds.feedburner.com/AquaristsOnline [R,L]
RewriteRule ^(feed|rdf|rss|rss2|atom)/?(feed|rdf|rss|rss2|atom)?/?$ https://feeds.feedburner.com/AquaristsOnline [R,L]
RewriteRule ^wp-(feed|rdf|rss|rss2|atom).php https://feeds.feedburner.com/AquaristsOnline [R,L]
# These are the standard WordPress Rules
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php/ [L]
</IfModule>
# END WordPressThanks in advance for any advice anyone can offer.
Peter
Forum: Fixing WordPress
In reply to: Site Becomes A Mess Without The Slash On The EndHi,
I have just checked and no I don’t.
What I have just tested though is strange.
If I go to https://www.aquaristsonline.com/ it does not work
If I go to https://www.aquaristsonline.com/index.php it does not work
However if I go to https://www.aquaristsonline.com/index.php/ it does work.
Driving me mad this one.
Thanks
Peter
Forum: Fixing WordPress
In reply to: Site Becomes A Mess Without The Slash On The EndHi, thanks for the reply.
I installed the developer toolbar and it all looks ok – everything is relative.
I have managed to force a trailing slash onto all pages in the .htaccess and all pages now work with the exception of the home page. Even though there is now a forced trailing slash on the home page the CSS still does not display correctly.
Peter