combining 2 htaccess files?
I need these two htacces files combined, but I get errors. Please help me combining these two htaccess files:1)
RewriteEngine on
RewriteBase /
# subdomain ?
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTP_HOST}<>%{REQUEST_URI} ^([^.]+)\.sirlook\.com(:80)?<>/([^/]*) [NC]
RewriteCond %1<>%3 !^(.*)<>\1$ [NC]
RewriteRule ^(.*)$ - [E=BLOGUSER:%1]
# subdomain / hostheader rewrites
RewriteCond %{ENV:BLOGUSER} ^(.+)$
RewriteRule ^page([0-9]+)/?$ blog/index.php?u=%1&page=$1 [L]
RewriteCond %{ENV:BLOGUSER} ^(.+)$
RewriteRule ^profile/?$ blog/profile.php?u=%1 [L]
RewriteCond %{ENV:BLOGUSER} ^(.+)$
RewriteRule ^archive_(.*)_(.*)_.html$ blog/archive.php?u=%1&y=$1&m=$2 [L]
RewriteCond %{ENV:BLOGUSER} ^(.+)$
RewriteRule ^archive_(.+).html blog/archive.php?u=%1 [L]
RewriteCond %{ENV:BLOGUSER} ^(.+)$
RewriteRule ^archive.html blog/archive.php?u=%1 [L]
RewriteCond %{ENV:BLOGUSER} ^(.+)$
RewriteRule ^([0-9]+)/?$ blog/entry.php?u=%1&e_id=$1 [L]
RewriteCond %{ENV:BLOGUSER} ^(.+)$
RewriteRule ^$ blog/index.php?u=%1 [L]
2)
Options FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^s(.*)s$ urlscript/gotoURL.php?Surl=$1
Anyone?