Search results

  1. R

    rewrite module compat issue#3

    Apache is bad at documentation However, this is what they told me when I want to use regular expression that contain space character. they told me that the regex should be quoted like thisRewriteCond %{THE_REQUEST} "^(?:GET|POST) / "if you use backslash to escape like this (It has trailing...
  2. R

    Apache mod rewrite incompatibility [Again!]

    Here we go guess what I'm now dealing with litespeed rewrite module again! I glad the rewrite module bug that I reported last time got fixed. (It may not considered to be a bug but triviality.) However, now I found new bug and it's very basic feature of rewrite module. I wonder why it...
  3. R

    [solved] [makeshift] Apache mod rewrite incompatibility

    No No It is documented in current release of Apache HTTP Server. here _http://httpd.apache.org/docs/current/custom-error.html However, it not very well document related to rewrite module.
  4. R

    [solved] [makeshift] Apache mod rewrite incompatibility

    Wow There are very few information about it on the internet. So the equivalent would be RewriteCond %{REQUEST_URI} =%{ORG_REQ_URI} (I guess) Now I can solve my problem. However, still the fact that it incompatibility with apache rewrite module. Thus Litespeed is not completely...
  5. R

    [solved] [makeshift] Apache mod rewrite incompatibility

    Actual test case Sorry my bad Now I remembered the situation. I have directory say "abc" in document root Normally if I leave it handle by web server visitor can access it with http://www.example.com/abc/... but I don't want that this is what I want http://www.example.com/!/...
  6. R

    [solved] [makeshift] Apache mod rewrite incompatibility

    Test case Actually I haven't test this yet. (for now I'm working on apache server.) However, this is a simple test case that I come up with. When I want to allow only specific URI to pass to php script but block everything else. So I write it as RewriteEngine On RewriteCond...
  7. R

    [solved] [makeshift] Apache mod rewrite incompatibility

    Currently I use method here in apache http://stackoverflow.com/questions/6342261/how-can-i-get-mod-rewrite-to-match-a-rule-just-once to prevent multiple or recursive rewrite rule. RewriteCond %{ENV:REDIRECT_STATUS} ^$ It's work great on apache but somehow not work on litespeed.
Top