I need some help figuring out what to put in an htaccess file. My friend and I are baffled how to do this. Firstly, the site is http://bln.breakpointdesigns.com/ When going here http://bln.breakpointdesigns.com/news/news.php you are given the archive months. When clicked we want a mod_rewrite on the file. Currently it is http://bln.breakpointdesigns.com/news/news.php?art=monat&zeit=200701 and we want it to be http://bln.breakpointdesigns.com/news.2007.01.php. The problem we are having is trying to get it to redirect and splitting up the 2007 and 01. Also, we are going to have to do this for the articles, but I am sure if I can get help with this one I will be set. Thanks.
RewriteEngine On RewriteRule ^news\.([0-9]{4})\.([0-9]{2})\.php$ news/news.php?art=monat&zeit=$1$2 [L,QSA] Code (markup): Something like that?