help with URL rewrite/htaccess needed
Posted: Fri Sep 24, 2004 7:28 pm
Hi,
I'm moving from a wordpress installation to s9y and wanted that the nice URLs you get with mod_rewrite to be the same as with my old wordpress installation, so that no one of my users must change their feed readers, bookmarks and that the google bot finds my site with the same links as ever
In Wordpress following rewrite rules are active in a .htaccess file:
Basically the URLs for articles look like that: http://server/archives/year/month/day/title
for a category like that: http://server/archives/category/name
Can someone with more experience in rewrite rules translate that for me so that s9y can use them?
I would be bery thankful
I'm moving from a wordpress installation to s9y and wanted that the nice URLs you get with mod_rewrite to be the same as with my old wordpress installation, so that no one of my users must change their feed readers, bookmarks and that the google bot finds my site with the same links as ever
In Wordpress following rewrite rules are active in a .htaccess file:
Code: Select all
RewriteEngine On
RewriteBase /
RewriteRule ^archives/category/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed.php?category_name=$1&feed=$2 [QSA]
RewriteRule ^archives/category/?(.*) /index.php?category_name=$1 [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-9]{1,2})?/?([_0-9a-z-]+)?/?([0-9]+)?/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&page=$5 [QSA]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([_0-9a-z-]+)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed.php?year=$1&monthnum=$2&day=$3&name=$4&feed=$5 [QSA]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([_0-9a-z-]+)/trackback/?$ /wp-trackback.php?year=$1&monthnum=$2&day=$3&name=$4 [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] for a category like that: http://server/archives/category/name
Can someone with more experience in rewrite rules translate that for me so that s9y can use them?
I would be bery thankful