I am attempting to add a times series column to an existing data frame. However my code adds all time into one column (left to right) instead of top to bottom.
RewriteEngine On
RewriteCond %{THE_REQUEST} /pagename\.php\?id=([^&\s]+)&title=([^\s&]+) [NC]
RewriteRule ^ /%1/%2? [R=302,NE,L]
RewriteRule ^(\S+)\s+(.*)$ $1-$2 [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteCond %{ENV:REDIRECT_STATUS} 200
RewriteRule ^(\S+)$ /$1 [NE,R=302,L]
RewriteRule ^([^/]+)/([^/]+)/?$ pagename.php?id=$1&title=$2 [L,QSA]