Tagged Questions
0
votes
1answer
10 views
htaccess redirect <hostname>/?area=0 to <hostname>/
I am simply trying to redirect /?area=0 link to / .. hostname can be anything. I have tried:
redirectMatch 301 /?area=0 /index.php
RewriteRule ^/?area=0$ /index.php$1 [R=301,L]
Also tried with some ...
0
votes
0answers
9 views
why is content-negotiation not as popular as rewrite or redirect?
I am trying to grasp the conceptual differences between
rewrite
redirect
multiviews
as methods for getting urls w/o the ".html" extension to resolve properly.
Right now extension-less urls are ...
0
votes
0answers
25 views
Rewrite URL redirects to 404
I have a page like http://www.fcarges1953.ro/colectie/sezon-programe/?id_sezon=1&slug=1961-1962
I tried to rewrite url like http://www.fcarges1953.ro/colectie/sezon-programe/1/1961-1962/
This is ...
0
votes
1answer
23 views
Apache mod rewrite url htaccess
I am a little bit confused and still learning on how to rewrite in Apache htaccess
How can I turn this:
http://www.mydomain.com/dir1/post.php?%20id=1
into this:
...
1
vote
1answer
28 views
Apache URL Rewriting - change globally the root of a site
I'd like to internally redirect any URL coming to the root and all the subdirectories of a site to a specific subdirectory (and its subdirectories) of this root, i.e.
http://example.net/index.html ...
0
votes
2answers
34 views
Apache rewrite rule regex
I'm trying to write a rewrite rule to redirect files in my new webhelp system (it's a stand alone website).
I have two things I try to take into account -
I want to redirect only files that are in ...
0
votes
1answer
29 views
page is displaying error page instead of intended page
This code is really puzzling me as to why this is happening. if i add the [R=302,L]
then my link works perfectly as i would hope. but if i don't add it and i have just [L]
the it goes to an error ...
0
votes
1answer
23 views
htaccess mask to fake directory
I'm not sure if this has been asked, because I've been searching and just not finding the right answer, unless I am blind.
We have a site on a machine www.example.com/?webform, which we want to mask ...
0
votes
0answers
11 views
.htaccess Assign a RewriteBase up one directory level
I have "example.com/main/search/search.php"
I need to remove "search.php"
Used this for that:
Options -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.php ...
0
votes
1answer
35 views
How do I htaccess redirect index.html to index.php and index.php to /
I recently changed my index.html to index.php - I want to be able to do a redirect to reflect this, and then also a rewrite that forces foo.com/index.php to just be foo.com/ and have it access the ...
2
votes
2answers
45 views
Rewrite rule leads to 403 forbbiden error
I have asked a question here yesterday and user "faa" tried to help me, but unfortunately we couldn't solve the issue.
Original question is here: Rewriting url with htaccess when a directory exists
...
2
votes
3answers
43 views
MVC htaccess rewrite
Hello i have problem with my htaccess configuration in my own mvc. IDK what i do wrong? All time i have this message 500:
Internal Server Error
The server encountered an internal error or ...
0
votes
0answers
49 views
How to Rewrite Location Response Header in a Proxy Setup with Apache
I've been trying for nearly a week to solve this now. Basically I have a primary proxy which sends requests to a secondary proxy on which OpeenSSO is installed.
If the OpenSSO agent determines that ...
1
vote
2answers
53 views
Rewrite URL in Nginx proxy + apache setup
I'm working in python/django with apache and a Nginx proxy.
I need to transform some URLs like these:
www.mydomain.com/client_A/
www.mydomain.com/client_B/
to
www.mydomain.com/clients/1/
...
0
votes
1answer
32 views
htaccess rewrite rule (arbitrarily path to index.php)
is it somehow possible to have a pattern which represents any path sequence which substitutes to my index.php with a parameter which holds the given path?
I have this rule
RewriteRule ^([^/.]+)$ ...
1
vote
0answers
30 views
Processing certain URL in apache when configured with Websphere application server, plugin-cfg.xml
I have configured Drupal apache server with WAS using the mod_was plugin. Now certain URI have to be processed by the drupal server and these URI come under the URI configured in plugin-cfg.xml
EX:
...
1
vote
0answers
29 views
Apache third level domain name configuration
i have specific rewrite like
RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteRule .* /app_dev.php
and i need domain names like hello.epsilon.localhost and ...
0
votes
1answer
15 views
How to do a forward in apache rewrite rules?
I want to forward all requests [domain]/hello.txt to [domain]/files/txt/hello.txt
The original url [domain]/hello.txt should still appear in the browser address bar.
Any suggestion on how to ...
1
vote
0answers
56 views
$_POST not working with apache rewrite. using index.php as controller
THE PROBLEM: I can't get any POST variables anywhere. Not even at the top of index.php. Is this because of the apache rewrite rule?
Here is my .htaccess rewrite rule:
Options +FollowSymLinks
...
0
votes
0answers
25 views
rewrite rule to update uri
In our login page, the subomdain should actually be picked up from the URL and rewritten to form URI.
User will hit URL like pqr.xyz.com to apache, in apache, need to rewrite above request with ...
-2
votes
1answer
35 views
Url rewrite for a domain name
I need it so when i go to mydomainname.com/page/week1 it will show mydomainname.com/page.php?month=week1. Will my code do that ?
rewriteengine on
rewritecond %{HTTP_HOST} ^www.mydomianname.com$ [OR]
...
2
votes
1answer
56 views
Apache RegEx Redirect Not Working Properly
I am attempting to use the following redirect code in my httpd.conf apache folder, however, every time I use it and try to connect to http://www.worldofclucky.net/fOrum it pulls up an error page ...
0
votes
0answers
53 views
$_SERVER['REQUEST_URI'] doesn't match url
I uploaded a new website in a sub-folder of my server documentroot (www.example.com/demos/website-name) as I've always done to show demos to my clients.
In my cms I use mod_rewrite to push all ...
-1
votes
3answers
33 views
Hi, I really need help on .htaccess [closed]
Hi I kinda deleted a line on my .htacess
and now I can't open the support.sitename.com
This is my support folder,
public_html/support
but how can I redirect that to support.sitename.com
i wrote ...
0
votes
2answers
23 views
Setting up local virtual machine the same as live server
I used to develop locally using XAMPP but am now switching to a VMware virutal machine running Ubuntu for my local development. Everything is set up and running a local version of the site fine apart ...
0
votes
1answer
30 views
Apache Rewrite Rule, With or Without Slash
How can I get Apache to rewrite all URLs such as:
mydomain.com/index.php?name=about-me
to work with EITHER
mydomain.com/about-me
or
mydomain.com/about-me/
If the URL is mydomain.com/about-me, ...
0
votes
0answers
14 views
Apach2 to ligthttp convert mod rewrite
can everyone help me to convert follow lines to ligthttp?
RewriteEngine On
RewriteCond %{REQUEST_URI} ^(.+)\~s$
RewriteRule ^(.*) stats.php?u=$1 [L]
RewriteCond %{REQUEST_URI} ^(.+)\~d$
RewriteRule ...
0
votes
0answers
29 views
Rewrite/redirect page with Apache and Django
I would like to ask question about Apache and Django on Ubuntu.
I need to make a redirect or rewrite rules on the home of a site on a specific page, but without this redirect is displayed in the ...
0
votes
1answer
27 views
URL rewriting - some rule works and some other doesn't
My Apache2.2 seems to work like this: when I request www.site.com/name first it is looking for folder /name/, if not found, next it is searching for file name.php.
But when I turn on RewriteEngine On ...
4
votes
1answer
84 views
Can't switch off RewriteRule [closed]
My .htaccess is:
RewriteEngine Off
RewriteRule ^poezje$ poezje-main.php
RewriteRule ^404$ 404.php
RewriteRule ^inna$ inna3.php
In spite of RewriteEngine Off, the first and second rules are still ...
0
votes
1answer
54 views
Just Modified this Code to Rewrite and NOT TO REDIRECT “Wildcard” Subdomains to Domain's Query String
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^(.*) http://www.%{HTTP_HOST}/$1 [R,NE]
RewriteCond %{HTTP_HOST} !^www\.domain\.com
RewriteCond %{REQUEST_URI} ...
0
votes
1answer
24 views
Nead help modifing this htaccess code please?
A while back with lots of help I put together this code and added exclusion for my addon domains. These are separate domains with their own folders sitting in the public_html. The server treats them ...
0
votes
1answer
21 views
how do i get this mod_rewrite to work
I am trying to force a redirect of all request to
http://website.com/
to
http://website.com/2013/04/
doing this
RewriteEngine on
Options +FollowSymlinks
Options -Multiviews
RewriteRule ...
0
votes
1answer
29 views
Need apache rewrite rule assist [closed]
I need to add some rewrite rules to a website.
Here's the idea =>
Rewrite all non-subdomain traffic from
(http or https)://(www. or no www.)example.com/whatever
(http or ...
1
vote
0answers
14 views
real estate large scale 301 redirect
Trying to work out what to do in regard to a redirect of a new client real estate website.
We have no access at all to the old site and the url structure on new is forcibly different due to randomly ...
1
vote
2answers
57 views
About PHP+Apache Rewrite
The current site is the the dynamic php as a.php.
I want user visite my site can use a.html,and not through original a.php.
In apache2.x, set apache's httpd.conf inside:
LoadModule rewrite_module ...
0
votes
0answers
51 views
Works on Apache but not Nginx
I've this wordpress-code here, which aims to take a post_meta from one page, and pass it on to a src of an iframe in the next page.
Single page:
<a href="<?php echo get_home_url(); ...
0
votes
0answers
97 views
reverse proxy rewriting url in cookie value
I'm trying to rewrite the cookie value that a backend server sends using mod_rewrite.
My current configuration:
RewriteCond %{HTTP_COOKIE} ORIG_URL=([a-z0-9]+)
RewriteRule .* - ...
0
votes
1answer
35 views
mod_rewrite migration from apache to lighttpd
how to describe the same thing with lighttpd?
my .htaccess:
RewriteEngine On
RewriteBase /
RewriteCond $1 !^(index\.php|style\.css|image|image-small|robots\.txt|sitemap\.xml|favicon\.ico)
...
-1
votes
1answer
38 views
Generic no-www htaccess redirect [closed]
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^domain.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [L,R=301]
It is easier if the domain.com could be interpreted programmatically so ...
0
votes
1answer
92 views
Apache - Redirect /folder to /folder/index.php using .htaccess
when somebody visits
http://127.0.0.1/something
I want to redirect him to
http://127.0.0.1/something/index.php
using .htaccess.
How can I do that?
Is it possible to do that without showing the ...
1
vote
2answers
51 views
Redirecting through .htaccess using a wildcard
How can I do a wildcard redirect in .htaccess file?
I tried using the following, but the * doesn't work for some reason.
redirect 301 /threads/*.343/ http://myotherdomain.com/threads/*.343/
I ...
0
votes
1answer
27 views
Rewrite URL with mod_rewrite
I need to rewrite URL from http://example.com/file.php?id=test&cat=category to http://example.com/file?test&cat=category
I only achieved to rewrite path /file.php to /file with:
RewriteCond ...
0
votes
1answer
21 views
How to rewrite URL for sub domain URL to access main domain pages?
I have to show the URL like sub.mydomain.com/pages on adressbar. But the files will excute from mydomain.com/pages..
requirement is to show
sub.mydomain.com/index.html => index files is on root ...
0
votes
1answer
88 views
Using mod_rewrite to return 404 for all requests on http [closed]
I am configuring apache to create a site that will use mod_jk to connect to an app running on tomcat.
I only want https requests to access my app and I would like to use mod_rewrite to return a 404 ...
1
vote
0answers
41 views
.htaccess block all in directory exept index.php
I wrote this script to deny all exept index.php
Order allow,deny
Deny from All
<Files *>
Order Deny,Allow
Deny from all
</Files>
<Files index.php>
Order Deny,Allow
Allow ...
0
votes
1answer
61 views
htaccess extension rewrite rule is working with Domain name but not working with IP showing error 404
RewriteEngine on
RewriteRule ^(.*)\.txt$ $1.php
This is the rewrite rule I am using to a specific directory of my website
http:// xxx.yyy.zz.aa /~nishant/directory/.htaccess
to change all .php ...
1
vote
0answers
50 views
htaccess versioning, check if file exists in multiple places
Thanks in advance for your help!
So I have the following .htaccess code.
It seems to work. However, it has to be the most bloated inefficient piece of work in existence. There just HAS to be a ...
0
votes
1answer
72 views
How to rewrite URL to index.php with a query even if a file/directory/location exists?
I'm trying to rewrite everything from my website to a file index.php with a query parameter that contains requested path, but when I just simply do RewriteRule ^(.*)$ index.php?url=$1 [L] my index.php ...
0
votes
1answer
29 views
Using values of a rewrite rule optional
Maybe somebody can help me on a rewrite Rule.
I use the following rewrite Rule with the Apache:
RewriteRule ^([^/]*)/([^/]*)/([^/]*)/([^/]*)/?$ /index.php?q=$1&m=$2&id=$3&p=$4 [L]
This ...

