Clean URL problem on Xampp and Hosted

Asked by Michael

I've read through every linked page here that I can find on this problem, and would be grateful for some help.

Below is what's in my .htaccess file. I've tried a few variations from different systems; WordPress, Drupal, etc., but nothing works. I've also tried toggling the SHARED_HOST in the config file. All I get is a redirect loop, both on local Xampp, and on my hosting server (and both of these do clean URLs in other software without problems).

<IfModule mod_rewrite.c>
 RewriteEngine On
 # If the site is going to be in a subfolder change this to /foldername
 # RewriteBase /
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteRule (.*) index.php?p=$1 [L,QSA]
</IfModule>

Is there something wrong with this, or does Jisko just require something different? I have the latest 3.0 rc1 release, downloaded around 30th July 2010, and there's no .htaccess file in it to give me some idea.

Help?!

Question information

Language:
English Edit question
Status:
Solved
For:
Jisko Edit question
Assignee:
No assignee Edit question
Solved by:
Marcos Garcia
Solved:
Last query:
Last reply:
Revision history for this message
Best Marcos Garcia (marcosgdf) said :
#1

http://svn.jisko.org/filedetails.php?repname=group.jisko&path=/trunk/.htaccess
marcos garcía // <email address hidden>

2010/8/5 Michael <email address hidden>

> New question #120074 on Jisko:
> https://answers.launchpad.net/jisko/+question/120074
>
> I've read through every linked page here that I can find on this problem,
> and would be grateful for some help.
>
> Below is what's in my .htaccess file. I've tried a few variations from
> different systems; WordPress, Drupal, etc., but nothing works. I've also
> tried toggling the SHARED_HOST in the config file. All I get is a redirect
> loop, both on local Xampp, and on my hosting server (and both of these do
> clean URLs in other software without problems).
>
> <IfModule mod_rewrite.c>
> RewriteEngine On
> # If the site is going to be in a subfolder change this to
> /foldername
> # RewriteBase /
> RewriteCond %{REQUEST_FILENAME} !-f
> RewriteCond %{REQUEST_FILENAME} !-d
> RewriteRule (.*) index.php?p=$1 [L,QSA]
> </IfModule>
>
> Is there something wrong with this, or does Jisko just require something
> different? I have the latest 3.0 rc1 release, downloaded around 30th July
> 2010, and there's no .htaccess file in it to give me some idea.
>
> Help?!
>
> --
> You received this question notification because you are an answer
> contact for Jisko.
>

Revision history for this message
Michael (michael-lincme) said :
#2

Thanks Marcos Garcia, that solved my question.

Revision history for this message
Michael (michael-lincme) said :
#3

Clicked the wrong button and it did an auto-thanks. I wanted to say a REAL thank you for an instant fix. Works perfectly, and I can carry on rearranging the interface with a happy feeling that another little irritation is solved. :)

Revision history for this message
Bob (support-localpricer) said :
#4

Hello!

This worked great for me as well. I do have a problem however with the root url displaying a Not Found message.

Example

http://domain.com/ doesn't work

but

http://domain.com/home works just fine along with the rest of the site pages.

This script is still new for me as I just started with it, any help is appreciated.