[Comoblog-commit] comoblog htaccess,NONE,1.1
Status: Inactive
Brought to you by:
markwallis
|
From: iamdecal <iam...@us...> - 2006-02-17 15:16:43
|
Update of /cvsroot/comoblog/comoblog In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2179 Added Files: htaccess Log Message: work towards the 1.2 release - this adds url for commentors as well as an email address -- NB may need to move exisinting data to the new row (will on my site,but not sure if thats public code or not) SEO friendly URLS on apache to the main site and most of the modules (optionally turned on by new config setting) ---------------------------------------------------------------------- Enter Log. Lines beginning with `CVS:' are removed automatically Committing in . Modified Files: _install/comoblog_db.xml _install/patch_1.php include/libraries.inc.php lang/english.inc.php templates/add_comment.tpl.htm templates/index.tpl.htm templates/list_comments.tpl.htm Added Files: htaccess _install/upgrades/1.1_to_1.2.xml ---------------------------------------------------------------------- --- NEW FILE: htaccess --- # # Apache/Comoblog settings: # # Various rewrite rules. <IfModule mod_rewrite.c> RewriteEngine on # Modify the RewriteBase # If you are using comoblog in a subdirectory and # the rewrite rules are not working properly, # you may need to change this to the direcotory #RewriteBase /comoblog # make sure what we're looking for donsnt exist RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # we map urls in to form of # /123/abcdefghijklmon # or # /post_id/post_title_can_be_any_text_really_for_seo # to # /post.php?/123 RewriteRule ^(.*)$ /post.php?/$1 [L,QSA] </IfModule> |