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

.htaccess - rewrite


Go to End


14 Posts   3959 Views

Avatar
bummzack

Community Member, 904 Posts

28 May 2010 at 3:38am

@Stijn: Do you get a 404 when trying to access the products.asp URLs? Or what is the issue? Maybe you have to set the RewriteBase as well, or change the RewriteRule.. it all depends on your Site structure. Is the site running in a subfolder by any chance?

Avatar
Stijn

Community Member, 46 Posts

28 May 2010 at 5:13am

| Do you get a 404 when trying to access the products.asp URLs? Or what is the issue?

Yes, when I look for a url like this: /products.asp?productgroupid=5&language=nl I get the 404 error that I set in SilverStripe.

I don't want the error when people use that url.

| Is the site running in a subfolder by any chance?

No subdir ..

Avatar
bummzack

Community Member, 904 Posts

28 May 2010 at 8:09am

Post the contents of your .htaccess and the link to your site?

Avatar
Stijn

Community Member, 46 Posts

28 May 2010 at 5:37pm

Can't post the site, but this is the content:

### SILVERSTRIPE START ###
<Files *.ss>
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Files>

<IfModule mod_rewrite.c>
RewriteEngine On

RewriteCond %{REQUEST_URI} !(\.gif$)|(\.jpg$)|(\.png$)|(\.css$)|(\.js$) 

RewriteCond %{REQUEST_URI} ^(.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* sapphire/main.php?url=%1&%{QUERY_STRING} [L]
RewriteRule ^products.asp$ /home/nl [R=301,QSA,L]

</IfModule>


### SILVERSTRIPE END ###

Avatar
bummzack

Community Member, 904 Posts

28 May 2010 at 6:29pm

Edited: 28/05/2010 6:29pm

In my first reply, I wrote to put the rewrite rule before the SilverStripe rewrite-rules. So here's how it should look like for your site:

### SILVERSTRIPE START ###
<Files *.ss>
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Files>

<IfModule mod_rewrite.c>
RewriteEngine On

RewriteRule ^products.asp$ /home/nl [R=301,QSA,L]

RewriteCond %{REQUEST_URI} !(\.gif$)|(\.jpg$)|(\.png$)|(\.css$)|(\.js$)

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

Avatar
Stijn

Community Member, 46 Posts

28 May 2010 at 6:32pm

Thx! Now its works! I must mis read it :$

Go to Top