Sorry: http://londonfestivalfringe.com/
http://www.londonfestivalfringe.com/blog/ is where the wp files are located.
I use wordpress as crm only, and generate the front page using php.
Have you published any posts? If so, can you post a link to one please?
The correct url for your feed should be http://londonfestivalfringe.com/blog/feed but it looks like your site is redirecting that link elsewhere. This looks like some sort of redirection issue due to the way in which you have set this site up rather than any WP-specifc problem.
Thanks. Just deleted the .htacess file. Same problem.
I don’t have a http://londonfestivalfringe.com/blog/feed directory. Should I have one?
Should I have one?
No.
What is in your domain root .htaccess file? How did you move WP from the /blog sub-folder to the root domain?
I commented out lines in htaccess root. This now seems to do something:
http://londonfestivalfringe.com/blog/feed
Here’s what I have:
WordPress Address (URL): http://londonfestivalfringe.com/blog
Site Address (URL): http://www.londonfestivalfringe.com/general/post
This still does not validate: http://www.londonfestivalfringe.com/blog/?feed=rss2
I have a htaccess file in general/post to handle the poststring for my php. Here it is:
RewriteEngine On
# RewriteRule ^people/([^/\.]+)/?$ counter.php?author=$1 [L]
RewriteRule ^([^/\.]+)/?$ index.php?title=$1 [L]
# RewriteRule ^([0-9]+)/?$ counter.php?p=$1 [L]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /general/post/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /general/post/index.php [L]
</IfModule>
# END WordPress
Thanks.
Thanks for your help, esmi.
I went back to default permalink and changed my php script to account for both the ?p=123 in it, and the need to use post-name for the links to my post pages.
Think the problem is solved now (it wasn’t a wp problem).