1
vote
2answers
9 views
mod_rewrite rules for all web documents
I am in need of the rewrite rules and conditions to evoke a central PHP script for every and any web document requested on my server. Just to add, I do not want the PHP script to b …
0
votes
2answers
14 views
mod_rewrite rule and setenv
Is there anyway to use the value set in a SetEnv on the RewriteRule statement?
Example:
SetEnv MY_SCRIPT myScript.php
rewriteEngine on
RewriteRule ^(.*)$ %{MY_SCRIPT} [L]
1
vote
4answers
58 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
5answers
613 views
htaccess code to remove extension AND add+force trailing slash?
I'm trying to put together some htaccess code that will turn example.com/filename.php into example.com/filename/ (and force the slash) - I've tried varous approaches, but each hasn …
0
votes
4answers
372 views
Search and replace in apache htaccess a RewriteRule
I'd basically like to get
/path/file+name+with+plusses.mp3
to rewrite to
/path/file name with plusses.mp3
In my case wordpress is intercepting the request and giving a 404. …
1
vote
4answers
184 views
rewritemaps with an external config to force an application pool recycle
Hi
I have the following defined in my web.config (
<rewriteMaps configSource="Rewrites.config" />
I have a CONFIG file that can be regenerated by an administrator via a …
0
votes
2answers
18 views
Mod-rewrite rule for external pages?
Hi,
Is it possible use mod_rewrite to resolve addresses hosted on another server?
Say I want to setup this URL:
http://www.myserver.com/myfolder/
To actually resolve to:
http: …
0
votes
2answers
21 views
Replacing %26 by & in query string with mod_rewrite
Have tried countless RewriteRule, including those suggested by previous posts.
Unefortunately, none works with my problem.
Any help appreciated.
0
votes
2answers
250 views
htaccess rewriteRule restrict access to one particular folder problem
Hello,
I have problem with getting the folder inc restricted.
It is only the inc folder in the root directory and not the inc folders higher up de hiarchie
Problems are:
IE w …
0
votes
2answers
63 views
How to use rewriterule to redirect to a php file in the same folder?
I would like to take requests for /somefolder/style.css and handle them with /somefolder/program.php
So, I put the following in my .htaccess file:
rewriteengine on
rewriterule ^ …
0
votes
1answer
16 views
Apache - Prettifying URLs with mod_rewrite while also catching some edge cases
Sorry to bug everyone with another mod_rewrite problem but you know the drill.
Basically, I have viewer.php, which accepts two arguments, chapter and page. Sometimes people will r …
0
votes
1answer
31 views
mod_rewrite: do not apply here
I am using mod_rewrite to put a category name in the URL, like locahost/categoryName and also a location localhost/categoryName/locationName .
One question I had, and I'm sure it' …
0
votes
2answers
37 views
Using mod_rewrite to redirect 70+ URLs with variables
I am constructing a webcomic site, but the chapter order has changed significantly. I have manually written the conversions for myself in a form like this:
36 -> 26.1
3 …
0
votes
2answers
53 views
Is it possible to have htaccess if else type rewrite conditions and rewrite rules?
I am trying to write an htaccess file that essentially does this:
if(requested file == "some-file.php" || requested file == "some-file2.php" || requested file == "some-file3.php") …
0
votes
4answers
35 views
htaccess redirect from /foo/bar/mydocument.doc to /foo/bar/auth_test.php?q=mydocument.doc
I've got a Web site with a bunch of docs and pdfs in /foo/bar/
Directory browsing is turned off, so you have to know the specific URL/URI combo to get the document. I'd like to f …
