Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Pages: 1
#1 2006-11-03 11:38:47
- vanwoods
- New Member
- Registered: 2006-11-03
- Posts: 3
Clean URL failure
My provider says that everything is correct at the server so that the problem has to be in the htaccess file, i tried all the possibilities that are in the forum and faq. nothing worked?!
Here are some error messages from the server (apache):
[Fri Nov 03 10:27:51 2006] [error] [client 80.57.49.19] mod_rewrite: maximum number of internal redirects reached. Assuming configuration error. Use ‘RewriteOptions MaxRedirects’ to increase the limit if neccessary.
[Fri Nov 03 10:27:51 2006] [error] [client 80.57.49.19] Request exceeded the limit of 20 internal redirects due to probable configuration error. Use ‘LimitInternalRecursion’ to increase the limit if necessary. Use ‘LogLevel debug’ to get a backtrace.
Server Configurations:
PHP version: 4.3.10-16
Register globals: 1
Server Local Time: 2006-11-03 12:33:51
MySQL: 4.1.11-Debian_4sarge7-log
Locale: nl_NL
Server: Apache/2.0.54 (Debian GNU/Linux) PHP/4.3.10-16
Apache version: Apache/2.0.54 (Debian GNU/Linux) PHP/4.3.10-16
PHP Server API: apache2handler
RFC 2616 headers:
Server OS: Linux 2.6.8-powerpc
Htaccess file:
RewriteEngine On
RewriteOptions MaxRedirects=20
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+) – [PT,L]
RewriteRule ^(.*) index.php
Does anybody know a workaround or solution for my problem?!
thnx in advance
Offline
Re: Clean URL failure
Offline
#3 2006-11-03 12:26:48
- vanwoods
- New Member
- Registered: 2006-11-03
- Posts: 3
Re: Clean URL failure
I also tried those but none of them work? BTW i get an 500 internal server message error.
thnx anyway
Offline
#4 2006-11-03 12:52:54
- vanwoods
- New Member
- Registered: 2006-11-03
- Posts: 3
Re: Clean URL failure
I placed this in the htaccess file now it works!
#DirectoryIndex index.php index.html
#Options +FollowSymLinks
#RewriteBase /relative/web/path/
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteOptions MaxRedirects=20
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+) – [PT,L]
RewriteRule ^(.*) index.php
</IfModule>
#php_value register_globals 0
thnx!
Offline
Pages: 1