Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Page not fully loaded


Go to End


22 Posts   6307 Views

Avatar
OBITS

Community Member, 17 Posts

5 November 2010 at 2:06am

okay i don't think so, how i can controll tha?

Avatar
mmh

Community Member, 24 Posts

5 November 2010 at 2:12am

First hit in google searching "check mod_rewrite is enabled":

http://www.wallpaperama.com/forums/how-to-test-check-if-mod-rewrite-is-enabled-t40.html

Avatar
OBITS

Community Member, 17 Posts

5 November 2010 at 2:18am

Avatar
mmh

Community Member, 24 Posts

5 November 2010 at 2:31am

Uff,

hm, try something like that:

RewriteEngine On 
RewriteBase / 
RewriteCond %{REQUEST_URI} ^(.*)$ 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule .* sapphire/main.php?url=%1&%{QUERY_STRING} [L] 

instead of

<IfModule mod_rewrite.c> 
RewriteEngine On 
RewriteBase / 
RewriteCond %{REQUEST_URI} ^(.*)$ 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule .* sapphire/main.php?url=%1&%{QUERY_STRING} [L] 
</IfModule>

Avatar
OBITS

Community Member, 17 Posts

5 November 2010 at 3:07am

i'm sorry but unfortunately no change

Avatar
mmh

Community Member, 24 Posts

5 November 2010 at 5:37am

I've got no more idea.

Go to Top