URL rewriting module for the Apache web server. It is commonly used for so-called "pretty" URLs, but also provides the power and flexibility to perform various request handling tasks beyond simple substitutions.
0
votes
0answers
4 views
Pattern match 301, retaining one querystring parameter
Been scratching my head over this one. I have a URL format I need to redirect and only need one part of the querystring. Example URL:
...
0
votes
0answers
12 views
how made rewrite rule in htaccess?
I have a link as
/ru/office/rent/index.html?search=table&page=2
Ru, office, rent can change. It can have much more get-params. How can it makes
...
0
votes
0answers
5 views
Mod_Rewite Exclude a url (URI Exception)
I am using this mod-rewrite rule to redirect the just the homepage of my site to the /it/ sub-directory on the same site.
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond ...
0
votes
0answers
12 views
Invalid Subdomains of Addon Domains Show Content Fom Main Domain
I have a website - www.example.com.
There is content at www.example.com/content.html.
I have an addon domain called www.addon.com.
If I type invalidsubdomain.addon.com/content.html into the address ...
0
votes
1answer
11 views
Mod_rewrite dynamic URL with multiple parameters to SEF static URL
I want to convert complex URLs created by a PERL script program to search-engine friendly static URLs. My web site is a stock photography library, and users can search for images by keywords or by ...
0
votes
0answers
7 views
Installing php app in AWS, everything works but urls with “search”
I have a little system with a REST service. It works perfectly in AWS, except anything containing /search/ in the URL, like http://server.com/search/a, if you use /find/ for the same, it works.
I ...
0
votes
1answer
7 views
Deny direct access to files but allow query strings in htaccess
So I browsed through all the htaccess solutions but none are good for my scenario...
Basically I want to deny direct access to all file types except the ones listed, like this:
Order Deny,Allow
Deny ...
-1
votes
0answers
21 views
HTACCESS not working on 1and1
I worked on a little CMS on localhost using htaccess and a custom TPL system. It works great on localhost, but I believe the htaccess isn't working on my 1and1 webserver. Any help? Here is the ...
0
votes
2answers
32 views
mod rewrite won't accept my slash
I've just started with mod-rewrite and I can't figure something out.
This works
RewriteRule ^client-(.*)?$ clients.php?client=$1 [NC]
This doesn't
RewriteRule ^client/(.*)?$ clients.php?client=$1 ...
0
votes
1answer
10 views
htaccess rewrite all subdomain to index.php
I know this question has been asked a lot but I don't know why it does not work for me :-?
this is my htaccess:
Options +FollowSymLinks
IndexIgnore */*
# Turn on the RewriteEngine
RewriteEngine On
# ...
1
vote
1answer
17 views
Exception to rewrite rule
I have an existing .htaccess file in my site route. I am not familiar with rewrite syntax and need the following done:
My site runs Zend and uses routing
A previous developer added rules to remove ...
0
votes
1answer
13 views
mod_rewrite based on current HTTP_HOST and HTTP_REFERER
Is it possible to make such check with htaccess mod_rewrite -
If a referer domain is example.com and current host is www.example.com
then redirect the user to example.com domain.
The meaning is to ...
0
votes
0answers
17 views
Is rewriteCond doesn't work with semicolon?
I've ask this rewrite rule for Everything but certain pattern question.
Well, the problem is still the same. I have the following htaccess:
<IfModule mod_rewrite.c>
# Options ...
2
votes
2answers
23 views
Why is this [L] flag failing to prevent application of the next rewrite rule?
I thought the "L" flag was supposed to prevent subsequent rules from being applied. Yet in this example:
RewriteRule foo bar [L]
RewriteRule bar qux
I get http://mysite/foo rewritten as ...
0
votes
1answer
19 views
Godaddy Ubuntu 3.6 mod_rewrite issues
I have been at this for 3 hours and cannot seem to get mod_rewrite to work with GoDaddy on a shared server under a subdomain. I have an app in a subdirectory and I've used the same rules before on ...
1
vote
1answer
18 views
htaccess redirect specific url to another domain
I want to redirect specific URL with params to another domain
http://domain.tld/buy/?w=X1234 to http://anotherdomain.tld/product.php?id=X1234
Here my htaccess
RewriteCond %{REQUEST_URI} ...
-1
votes
0answers
32 views
Generate Random Number Instead Original URL [closed]
I Have a script located in a subfolder like this:
mysite.com/subfolder/index.php
I will change the
/subfolder/index.php
to a random number like /534564/page.html and 998765/link.php to disallow ...
0
votes
2answers
12 views
Using or ( | ) statement in .htaccess rewrite rules
Instead of writing 2 rewrite rules for pointing to the same page, I though I would be able to do this with one rule using the Or statement ( | ):
RewriteRule ^([\d]+)-post[\d]*\.html|#post([\d]+) ...
0
votes
1answer
19 views
MVC htaccess rewrite - hide index
I have a basic MVC structure with a restful uri design of:
mysite.com/appdir/:index/:controller/:action/
and I want to hide the index route parameter so my uri looks like:
...
0
votes
0answers
31 views
Conflict with 3 different RewriteRules in .htaccess?
I'm using the below in my .htaccess file.
There 3 types of redirects:
redirect to directory /admin/index.php
redirect to specific .php files e.g. /about
redirect to user profile page from /John
...
0
votes
0answers
25 views
RewriteEngine to hide extensions and GET
How can I rewrite this URL ?
http://website.com/file.php?lang=en
to
http://website.com/file/en
File name and parameters can change, I found a lot of topics put I did not found the combination of ...
-1
votes
2answers
19 views
wildcard 301 redirect to ignore variable in url
Instead of writing a simple redirect for all my old product urls, I need a rewrite rule to redirect several links with very similar urls that are only different by one numeral that is separated by ...
1
vote
1answer
26 views
500 server error with hiding .htm and .html file extensions on non-existing files
Need to improve this rule.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) /$1.htm [L]
Per my hosting company: The reason for 500 errors on non-existent ...
0
votes
2answers
24 views
Why does this .htaccess not work?
I have a url like this:
http://domain.com/index.php?id=223
And this .htaccess code:
RewriteEngine On
RewriteRule ^([^/]*)\.html$ /index.php?id=$1 [L]
From what I understand this should output:
...
0
votes
0answers
15 views
mod_rewrite url simplifying
I would like to setup mod_rewrite such that when a user visits domain.com/user/1123456789, the actual page being shown is domain.com/displayuser.php?userID=1123456789.
My intent is to simplify the ...
0
votes
0answers
10 views
.htaccess delete the trailing slash
When I created my website I wanted a url with the three "w" without a trailing slash so I did the following in my .htaccess
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain.es
RewriteRule (.*) ...
0
votes
0answers
49 views
Apache or PHP rewriting my URL to IP Address
I have a PHP/HTML5 app that requires an application.ini file parse the URL to determine a usage path. The DNS is configured correct, but when I attempt to hit the page I see that the domain name is ...
1
vote
1answer
16 views
Append a variable to the URL using mod rewrite
First of all I am running apache 2.2.22 and using PHPed as an editor.
In order to start a debugging session I need to append a variable that tells the editor to start the debugging session.
The ...
1
vote
2answers
36 views
Clear URL with .htaccess
I am pretty new to webdesign and haven't been able to figure this one out..
I am using HTML5Boilerplate as a template for my new website. The .htaccess file that ships with the template rewrites ...
1
vote
1answer
28 views
rewriteRule to make url user friendly
I have two rules.
first one to allow request without .php extension
and the second one rewrite all request start with /account/(.*)$ to /account.php?action=$1.
what's wrong with the account rule? ...
0
votes
0answers
21 views
Symfony mod_rewrite how to corretly loading css/js files
When I started use mod_rewrite, page not loading css/js/img files. This is my .htaccess file
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
# ...
0
votes
0answers
10 views
Getting an infinite 301 redirect loop in webmaster tools, but not in the browser
I'm working a site with a number of subdomain 'homepages' for countries, like this:
site.com/unitedstates
site.com/canada
site.com/mexico
Within these directories are pages and other subdirectories ...
2
votes
0answers
57 views
clean URL test failed D7
I have spent about four hours trying to get clean URLs to work and it is really doing my head in. I am very new to Drupal and after hearing all the wonderful things about it, this is disappointing. ...
0
votes
1answer
15 views
Redirect oldsite.com to new.oldsite.com, and sub.oldsite.com to new.oldsite.com/sub/
I have a situation where we've redesigned a site and have moved it to a new domain. The old site has a few client subdomains that we need to redirect to the new domain, but to folders that we will ...
0
votes
0answers
10 views
Use mod_rewrite to strip “.mp4” from URL and pass result to other rules
Gentlemen, I an turning to you out of sheer helplessness.
I am using Kaltura CE video management and serving platform for my video publishing (vodcast) needs. This workhorse uses an extensive set of ...
0
votes
2answers
36 views
Passing Parameters from Mod_rewrite to PHP with a front end comprising of just HTML & JS
I have a web application, the front end is HTML & JavaScript/jQuery and The back is PHP.
It was using ugly URL's like so, host/app/Page.php?userid=1.... Ugly!
So with a little MOD_REWRITE it will ...
0
votes
0answers
16 views
Apache RewriteMap directive with White List of IPs and IP Ranges
I am trying to use the RewriteMap directive in Apache to "white list" (allow only) a mix of certain ranges of IPs and with specific IPs. What makes this tricky for me is that the whitelist will ...
0
votes
1answer
27 views
.htaccess is causing infinite loop when used from subfolder, works fine in domain root
I am using this .htaccess code for PHP application.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ...
1
vote
1answer
14 views
.htaccess and RedirectPermanent - Mistyped URL - How to change it? [SOLVED]
I am experiencing an issue while using RedirectPermanent in the .htaccess file.
So let's suppose we want to redirect a user, using RedirectPermanent, from /contact to /contact-me.
RedirectPermanent ...
2
votes
1answer
26 views
htaccess rewrite rule with multiple parameters
This is my .htaccess file:
Options +FollowSymLinks
Options -Multiviews
RewriteEngine On
RewriteBase /website/
RewriteCond %{REQUEST_FILENAME} -d [OR]
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ...
0
votes
0answers
23 views
.htaccess route with file check not working with querystring
I'm certainly no expert with .htaccess files, so bear with me..
I have a nice simple rule:
RewriteCond %{DOCUMENT_ROOT}/landing-pages/$1.aspx -f
RewriteRule ^/(.[^/]*)/?$ /landing-pages/$1.aspx ...
0
votes
0answers
14 views
multiple directory rerouting with rewrites
I'm trying to rewrite multiple directories for my app using .htaccess
All requests are processed via the 'app.php' file in my 'Web' directory which works absolutely fine but I've got my assets ...
1
vote
1answer
12 views
Htaccess change hyphens to underscores
I have changed the structure of my links and am trying to 301 my old links to the new links to stop them all getting 404s
Old links
...
0
votes
0answers
20 views
redirect error when combining two rewrite rules
I am trying to use mod_rewrite in order to replace my url parameters with slashes.
I created a rewriteRule like this to achive that:
RewriteRule ^page/([^/]*)/([^/]*)/([^/]*)/([^/]*)/$ ...
1
vote
1answer
16 views
.htaccess rewrite a url to a subdomain
I don't think this is possible, however I would like to ask the community to see if it is.
I have a blog on a subdomain blog.domain.com due to a revamp of the site we are having to use the blog on a ...
1
vote
0answers
28 views
Rewrite rule for subdomain, nice URL variable and slash
I struggle with setting up proper mod_rewrite rule for my domain.
I was never any good at regexp-kinda expressions, but every documented tutorial I just fail to use for myself.
Domain: example.org
...
0
votes
0answers
16 views
Hide GET parameters in a URL / rewrite to a clean URL / save GET params in SESSION?
I've looked around here but I can't find a matching solution to my problem here.
What I want to do is 1) clean up the URLs with GET params in them and 2) save those GET params in session variables.
...
0
votes
1answer
34 views
Multiple slashes issue in URL
To remove multiple slashes from, i have used the code as :
RewriteEngine on
RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
RewriteRule . %1/%2 [R=301,L]
Also the Mod Rewrite is on, but still not working ...
1
vote
0answers
22 views
.htaccess redirect all subdomains to single folder
I have in a site with many user subdomains ie user1.example.com or user2.example.com.
I have the following rewrite rule:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.
RewriteCond %{HTTP_HOST} ...
1
vote
1answer
12 views
RewriteRule not working in httpd.conf
I'm trying to make the following occur:
When I go to http://www.mysite.com/b-pogs/20 (or http://www.mysite.com/b-pogs/20/), it internally redirects to http://www.mysite.com/b-pogs/index.php?comic=20.
...

