Welcome Guest, Not a member yet? Register   Sign In
Rewrite URL's
#10

[eluser]Guido Mallee[/eluser]
Thanks, I found the answer there indeed!

For those who want to know how I resolved my problem, I adjusted my .htaccess file to this:

Code:
ErrorDocument 404 /index.php
DirectoryIndex index.php
<IfModule mod_rewrite.c>
    RewriteEngine on

    RewriteCond %{QUERY_STRING} ^trxid=([0-9]*)&ec;=(.*)$
    RewriteRule ^checkout/complete/$$ http://www.mywebshop.com/checkout/complete/%1/%2? [R=302,L]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    
    RewriteRule ^(.*)$ index.php?/$1 [L,QSA]
</IfModule>


Messages In This Thread
Rewrite URL's - by El Forum - 11-03-2009, 12:05 PM
Rewrite URL's - by El Forum - 11-03-2009, 12:26 PM
Rewrite URL's - by El Forum - 11-03-2009, 02:44 PM
Rewrite URL's - by El Forum - 11-03-2009, 04:35 PM
Rewrite URL's - by El Forum - 11-03-2009, 05:06 PM
Rewrite URL's - by El Forum - 11-03-2009, 06:05 PM
Rewrite URL's - by El Forum - 11-04-2009, 01:31 AM
Rewrite URL's - by El Forum - 11-04-2009, 06:17 AM
Rewrite URL's - by El Forum - 11-04-2009, 06:31 AM
Rewrite URL's - by El Forum - 11-05-2009, 05:34 AM



Theme © iAndrew 2016 - Forum software by © MyBB