I've some trouble with typo3 (mydomain.net) and wordpress (mydomain.net/blog/) using mod_rewrite.
First I was running a typo3 installation which uses mod_rewirte without trouble. Now I'm trying to run a wordpress too, but if wordpress uses mod_rewrite, every click of a link bing me back to the index of my typo3.
The filestructure of my ftp-folder:
- /html/ (contains the typo3 files and folders and the .htaccess-file)
- /html/blog/ (contains the wordpress files and folders)
This is the content of the .htaccess:
RewriteEngine On
RewriteRule ^(typo3|t3lib|tslib|fileadmin|typo3conf|typo3temp|uploads|showpic\.php|favicon\.ico)/ - [L]
RewriteRule ^typo3$ typo3/index_re.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php [L]
Any ideas as to what I should do? Or is it possible that only one cms uses mod_rewrite?