[eluser]bretticus[/eluser]
[quote author="JanDoToDo" date="1274132707"]Ok, with that change, the page no longer gives a 500 ISE but the payment page is now again "page cannot be found".
It must be trying to rewrite the url, but the payment folder is in the excluded list??
Is it the rewrite rule
RewriteRule ^(.*)$ /index.php/$1 [L]
Doesnt the " ^(.*)$ " bit tell it to rewrite anything, even regardless of whether it was in the previous condition? Or if it doesnt meet the previous condition does the rewrite just cease completely? shall I try adding it to the final rule?[/quote]
Yes, RewriteRule ^(.*)$ /index.php/$1 [L] says take any URI and rewrite it to /index.php/[whatever uri got matched]
The $1 is a regular expression substitution for what got matched in the subpattern (.*) which means 0 or more of anything.
However, this is not the problem. It's doing its job.
You did throw me off when you excluded a URL that apparently CI needs to process.
Code:
RewriteRule ^payment - [L]
Should be:
Code:
RewriteRule ^assets - [L]
Right? Since you DO NOT WANT any rewriting being performed specifically for the /assets/scripts/payment/ folder according to your original post. Am I missing something here?