sriggins
Forum Replies Created
-
Forum: Installing WordPress
In reply to: client is automatically redirected to localhostok answered my own question. Used phpmyadmin to change the home record of wp_options, then all was well
Forum: Installing WordPress
In reply to: client is automatically redirected to localhostI set up wordpress via Fantastico and it set up for my domain, which I have not moved over.
Of course, I can’t log in via the local machine, as it is at my host, and anyway it would keep redirecting to my domain.
Is there any other way to keep WP from redirecting from the IP to the domain so I can get in and change it? Seems to be in the database somewhere?
Forum: Fixing WordPress
In reply to: Adding Rewrite RuleAbove your #BEGIN WordPress put:
RedirectPermanent /atom.xml http://yordomain/feed/atom.
Forum: Fixing WordPress
In reply to: How to redirect a old uri without redirecting :)ok I can
RewriteRule ^index\.xml? index_old.xml [QSA]
This works, changes it to my old static file, and the url is the original.
However, mapping to ?feed=rss2 fails, as I guess the rule to process via the php file is not triggering?
Forum: Fixing WordPress
In reply to: How to redirect a old uri without redirecting :)I found this:
RewriteRule ^index.xml(.*)? /wordpress/?feed=rss2 [QSA]
on
http://codex.wordpress.org/WordPress_Feeds
but I just get a 404 (I changed wordpress to my directory)