| View previous topic :: View next topic |
| Author |
Message |
virtuexru
Joined: 31 Jul 2007 Posts: 3
|
Posted: Sep 05, 2007 3:58 pm Post subject: Error... |
|
|
Getting a internal server 500 error..
checked error logs, this is what I get..
[Wed Sep 5 10:51:18 2007] [alert] [client 204.8.190.2] /home/***/public_html/.htaccess: RewriteRule: cannot compile regular expression '^([a-z-_]+).html$'\n
took off *** |
|
| Back to top |
|
 |
PilgrimX182

Joined: 22 Mar 2006 Posts: 2106 Location: UFO Lab
|
Posted: Sep 06, 2007 9:04 am Post subject: |
|
|
Find .htacess file in htdocs folder and replace
| Code: | | RewriteRule ^([a-z-_]+).html$ /cgi-bin/index.cgi?act=page&tmpl=$1 [L] |
with
| Code: | | RewriteRule ^([a-z0-9\-\_]+).html$ /cgi-bin/index.cgi?act=page&tmpl=$1 [L] |
|
|
| Back to top |
|
 |
|