Permalinks
-
I have been searching and searching to determine what my permalink problem is and I have gone through all the support that I have found here, but I must have missed something.
I can not, and have never gotten, permalinks to work. I have .htaccess in the wordpress directory. It is set to 664, and I have made the change to wp-includes/template-functions-links.php I found here. I upgraded to 1.5 and no change.
here is my .htaccess
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^archives/category/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wordpress/wp-feed.php?category_name=$1&feed=$2 [QSA]
RewriteRule ^archives/category/?(.*) /wordpress/index.php?category_name=$1 [QSA]
RewriteRule ^archives/author/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wordpress/wp-feed.php?author_name=$1&feed=$2 [QSA]
RewriteRule ^archives/author/?(.*) /wordpress/index.php?author_name=$1 [QSA]
RewriteRule ^archives/([0-9]{4})?/?([0-9]{1,2})?/?([0-9]{1,2})?/?([_0-9a-z-]+)?/?([0-9]+)?/?$ /wordpress/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)/?$ /wordpress/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/?$ /wordpress/wp-trackback.php?year=$1&monthnum=$2&day=$3&name=$4 [QSA]
RewriteRule ^feed/?([_0-9a-z-]+)?/?$ /wordpress/wp-feed.php?feed=$1 [QSA]
RewriteRule ^comments/feed/?([_0-9a-z-]+)?/?$ /wordpress/wp-feed.php?feed=$1&withcomments=1 [QSA]I write code for a living, though I am not the best at .php and .css I will get through it, so I will make any code changes needed,
Can someone point me to a tutorial on turning on permalinks or some guide to setting them up.
my blog uri is – https://team-swap.com/wordpress/ and I would appreciate any help that you can give me or guide me too.
- The topic ‘Permalinks’ is closed to new replies.