All Questions
14 questions
0
votes
1
answer
101
views
.htacess need help for removal of multiple dots in urls
I am looking to redirect a url but its giving error, we are using ISAPI on our windows server
This is the url i am trying to redirect, but its not redirecting. the problem is multiple dots.
...
0
votes
2
answers
508
views
Delphi ISAPI: How to access Accept-Language in an Apache host?
I wrote a web service using content-negotiation with ISAPI using Delphi XE4.
My code contains
ARequest.GetFieldByName('Accept-Language')
which outputs the correct value if I use a standalone server ...
2
votes
1
answer
2k
views
Apache custom dynamic error response
I've seen hundreds of pages explaining how to create custom error pages in Apache 2 server. My question is different. I have a web application running in Apache (it is a ISAPI DLL, but it could also ...
1
vote
1
answer
85
views
mod_rewrite: remove www and trailing slash
I already have a rule set up to remove www from my urls and redirect them...
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*) http://'%'1$1 [R=301,L]
*note-I had to put quotes around the ...
4
votes
1
answer
4k
views
Error calling GetFilterVersion on Apache to Tomcat Redirector ISAPI Filter - 32bit W2K8 SP2 Standard
I am getting an error trying to use the Apache ISAPI Redirector from IIS 7 to Tomcat but only on the 32 bit W2K8 SP2 Standard Edition.
It works fine on 64 bit W2K8 R2 and 32 bit W2K3.
I have ...
1
vote
2
answers
9k
views
How to install a Delphi Webservice ISAPI module on Apache 2.3
I have a webservice compiled into a ISAPI module (dll). I have Apache 2.3 correctly installed. How to install this DLL into apache?
1
vote
1
answer
1k
views
isapi rewrite rules remove blog from wordpress url
while i am new to rewrite I will try to outline this problem in english first than start a thread on how to fix this issue with all your help.
I am trying to remove the folder /blog/ from the ...
1
vote
1
answer
3k
views
How do I configure a ASAPI DLL for Delphi in Apache 2.X?
I'm trying to understand ISAPI as run under Apache 2.x. I've created a simple DLL using Delphi XE to test with based on a tutorial I found.
I've added these lines to my Apache httpd.conf file.
...
0
votes
1
answer
753
views
Apache URL rewriting without mod_rewrite
I'm porting an IIS asapi filter over to linux/apache, and am wondering what the best path to take it. On IIS, this isapi filter intercepts the request, performs a database lookup to find the file the ...
1
vote
2
answers
2k
views
ISAPI WebService on Apache
I have WebService (ISAPI DLL) with client in Delphi 7. When I call my WebService with my client, everything works fine. Problem is with client in .NET from another company. If as server runnig apache (...
2
votes
1
answer
707
views
Can I create a clean URL using WebBroker and Delphi?
Can I create a clean URL for WebBroker webpages/applications ?
A typical WebBroker URL normally looks like:
hxxp://www.mywebsite.com/myapp.dll?name=fred
or
hxxp://www.mywebsite.com/myapp.dll/names/...
2
votes
1
answer
1k
views
Apache Hosted Web Service Doesn't Handle TRemotable classes
I started with an ISAPI DLL which I created with Delphi 2009, This module perform as expected when running in IIS 5.1 on Windows XP. This same module when hosted using Apache 2.2.15 and mod_isapi does ...
0
votes
1
answer
464
views
RewriteEngine off; does ErrorDocument still work?
I'm writing an ISAPI filter for the IIS7 that should map some functionalities of the Apache Mod_Rewrite. The whole rewriting is finished and I now want to implement the ErrorDocument directive.
When I ...
0
votes
1
answer
199
views
Migrating from IIS 5.1 to Apache 2.11, how do I move/translate ISAPI filters into Apache?
Maybe this isn't even a valid question, so any help would be good.