Title: neror's Replies | WordPress.org

---

# neror

  [  ](https://wordpress.org/support/users/neror/)

 *   [Profile](https://wordpress.org/support/users/neror/)
 *   [Topics Started](https://wordpress.org/support/users/neror/topics/)
 *   [Replies Created](https://wordpress.org/support/users/neror/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/neror/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/neror/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/neror/engagements/)
 *   [Favorites](https://wordpress.org/support/users/neror/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Word Press was moved. What about RSS feed?](https://wordpress.org/support/topic/word-press-was-moved-what-about-rss-feed/)
 *  [neror](https://wordpress.org/support/users/neror/)
 * (@neror)
 * [19 years, 3 months ago](https://wordpress.org/support/topic/word-press-was-moved-what-about-rss-feed/#post-510773)
 * The “proper way” to do this would be to respond with a 301 Permanently Moved 
   at the old url. Assuming you’re using apache, a mod_rewrite. Something like this
   in an .htaccess file in the docroot for [http://website/blog/](http://website/blog/)
   would work:
 * `RewriteEngine on
    RewriteRule ^feed/$ http://blog.website/feed/ [R=permanent,
   L]
 * This tells apache to respond with something similar to the following:
 * `HTTP/1.1 301 Moved Permanently
    Location: http://blog.website/feed/
 * Any decent feed reader will recognize the 301, redirect to the new url, and update
   itself to use the new url in the future.
 * Check out the [mod_rewrite docs](http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html)
   and the [status code section](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html)
   of the [HTTP spec](http://www.w3.org/Protocols/rfc2616/rfc2616.html) for more
   info.

Viewing 1 replies (of 1 total)