21308 Posts in 5737 Topics by 2603 members
| Go to End | ||
| Author | Topic: | 2234 Views |
-
Re: .htaccess - rewrite

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?
-
Re: .htaccess - rewrite

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 ..
-
Re: .htaccess - rewrite

28 May 2010 at 8:09am
Post the contents of your .htaccess and the link to your site?
-
Re: .htaccess - rewrite

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 OnRewriteCond %{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 ###
-
Re: .htaccess - rewrite

28 May 2010 at 6:29pm Last edited: 28 May 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 OnRewriteRule ^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 ###
| 2234 Views | ||
| Go to Top |


