1
vote
2answers
36 views
Apache Mod Rewrite: RewriteRule with L argument. What’s wrong?
Hi, I'm developing a php application and I have a little issue with Apache and Mod Rewrite. Anyone knows what's wrong here?:
RewriteEngine on
RewriteBase /mysite/
RewriteRule ^css …
0
votes
1answer
7 views
IIRF redirect combine rules?
I have 3 "rules". One to make sure URLs are lowercase another to include a slash at the end of directories, and a 3rd to force access to index.html pages to be thru the directory i …
4
votes
3answers
211 views
Is there a free/demo version of Cobol with multi-user support?
I have been using Cobol85 for a long time, including work with merging Cobol and Z80 assembly. However traditional Cobol doesn't support multi-user/shareable (ie can run concurren …
0
votes
0answers
10 views
IIS7 rewrite for REST not working
I have a REST service and am trying to remove the .svc - a common task/problem.
The application on the server is in a virtual directory under the default website (not sure if this …
0
votes
2answers
110 views
Simple URI rewrite with .htaccess
My current .htaccess file
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^falsebase\.net
RewriteRule (.*) http://falsebase.net/$1 [ …
2
votes
3answers
64 views
How to get personalized sub-domains for users and make them work?
Say I have a site hosted on example.com, now I want each of my registered user to get a personalized sub-domain, e.g Alice should normally gets alice.example.com as her sub-domain. …
0
votes
2answers
63 views
Nginx rewrite non-www-prefixed domain to www-prefixed domain
I see the Nginx HttpRewriteModule documentation has an example to rewrite a www-prefixed domain to a non-www-prefixed domain:
if ($host ~* www\.(.*)) {
set $host_without_www $1; …
0
votes
1answer
104 views
Need help converting apache .htaccess code to lighttpd url_rewrite code
Hi All,
I have this custom written CMS built on XAMPP. I'm trying to test the same on lighttpd to benchmark the so-called performance gains... but am stuck at the rewrite rules. …
0
votes
0answers
30 views
Nginx rewrite rule: check for nonexistant files and folders
I'm trying to set-up nginx rewrite rules as the following:
Original structure:
domain.com/index.php?site=project
Now I tried to mask it using the nginx rewrite engine:
if (-f $ …
0
votes
2answers
32 views
htaccess rewrite not working for all rules
This is a very strange problem, and I just hope that I can clearly explain it.
Basically, we made a major update on a client site today, and needed to update some rewrite rules in …
0
votes
2answers
37 views
Url Rewriting Help
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/index\.php
RewriteRule ^(.*)$ index.php?q=$1 [L]
This should rewrite any url to index.php?q={url}, and it's working. Anyway, http:/ …
0
votes
0answers
27 views
Redirecting from www.domain.com to http://domain.com, in apache, without .htaccess?? [closed]
Hi,
On my old host, when adding a domain i could choose if i wanted http://www.domain, http://domain, or both (if for example i chose www.domain, it would redirect http://domain t …
10
votes
16answers
799 views
Rewrite of legacy code
My department is currently faced with the responsibility for the task of maintaining a rather large COBOL code base. We are wondering how to add new features to keep up with busine …
2
votes
6answers
259 views
Rewriting C# code in F#
Just messing about with F# and I was trying to create a basic Lagrange Interpolation function based on this C# version (copied from a C++ wiki entry):
double Lagrange(double[] …
0
votes
1answer
16 views
mod_rewrite params inversion
How can I create the mod_rewrite rule so I can convert the following URLs:
From:
domain/something/param/action
ex:domain/cities/Chicago/view
to:
domain/something/action.php?para …
