on a GoDaddy shared hosting account, jcow 3.3's .htaccess file is causing problems.
i have jcow installed in a sub directory, like:
domain/jcow
if there is a / after the folder name, all works perfectly
(domain/jcow/)
but leave the trailing / off, and i'm getting:
"Bad Request - Your browser sent a request that this server could not understand." (400 error)
if i don't use the .htaccess file at all, then the page loads properly, but uploaded materials (photos / mp3s) throw 404's
This seems to be unique to GoDaddy shared hosting, as I have the exact same setup on my Arvixe hosted sites and everything works flawlessly.
the .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine on
To append a query string part in the substitution string
RewriteRule ^([0-9a-z/-]+)/$ index.php\?p=$1 [QSA]
RewriteRule ^([0-9a-z/-]+)$ index.php\?p=$1 [QSA]
</IfModule>
any help would be greatly appreciated. |