Broken images in Movable Type converted entries
-
I have a feeling this is a htaccess issue, but perhaps you folks can give me some specifics. I did a search of the forums here, as well as a Google search of the web, but came up blank.
I ran a blog under Movable Type and converted it to WordPress. I did this initially on a staging server (stage.rapp.org). The images I had embedded in the posts showed up fine. So I moved everything over to the main site at https://www.rapp.org
Suddenly the images are all broken, despite the fact that they are still in the https://www.rapp.org/archives/ directory. They broke as soon as I moved the htaccess file over to the main blog.
My htaccess file, which is below, is aimed at keeping the old permalink style of https://www.rapp.org/archives/year/month/post_title/
I assume I’ll have to add or alter something to get the images in the /archives/ directory to show?
Thanks so much for your help!
–Ron
RewriteEngine On
RewriteBase /
RewriteRule ^archives/?([0-9]{4})/?([0-9]{1,2})?/?([0-9]{1,2})?/?([_0-9a-z-]+)?/?([0-9]+)?/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&page=$5 [QSA]
RewriteRule ^archives/?(.*) /index.php?category_name=$1 [QSA]RewriteRule ^archives/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed.php?category_name=$1&feed=$2 [QSA]
RewriteRule ^archives/author/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed.php?author_name=$1&feed=$2 [QSA]
RewriteRule ^archives/author/?(.*) /index.php?author_name=$1 [QSA]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([_0-9a-z-]+)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed.php?year=$1&monthnum=$2&name=$3&feed=$4 [QSA]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([_0-9a-z-]+)/trackback/?$ /wp-trackback.php?year=$1&monthnum=$2&name=$3 [QSA]
RewriteRule ^feed/?([_0-9a-z-]+)?/?$ /wp-feed.php?feed=$1 [QSA]
RewriteRule ^comments/feed/?([_0-9a-z-]+)?/?$ /wp-feed.php?feed=$1&withcomments=1 [QSA]
- The topic ‘Broken images in Movable Type converted entries’ is closed to new replies.