Tagged Questions
0
votes
1answer
15 views
.htaccess rewrite, rewove filename from URL
I have a domain where I uploaded my html in the root as varg.html, about.html and contact.html. Therefore my URL is http://vargdesignkollektiv.se/varg.html but clearly I wan to remove varg.html for my ...
0
votes
1answer
26 views
Check if file exists on Nginx using regex
I'm trying to translate some htaccess files to Nginx vhost configuration, and i'm having trouble with this:
RewriteCond %{DOCUMENT_ROOT}/img/id_$1_$2 -f
RewriteRule ^id/(.+)/(.+)$ img/id_$1_$2 [NC,L]
...
0
votes
0answers
32 views
Wordpress add_rewrite_rule unicode
I'm having a hard time forcing a rewrite rule with certain criteria in wordpress, and I'm really hoping that someone can help...
The URL structure for the category is as follows
...
0
votes
2answers
37 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 ...
-1
votes
0answers
33 views
URL rewrite via .htaccess
I have an URL in the following form:
www.mysite.com/type/12345/category/product-name
What is the appropriate rewrite rule to create an URL with the following structure?
...
1
vote
1answer
35 views
Redirecting specific parameters to subfolders
I've been searching around a bit, but unfortunately I'm still at a loss when it comes to this problem, and being far from a veteran with .htaccess, I've been unable to work out a solution to my ...
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
1answer
26 views
Rewrite engine. How to translate URL
I am new to regular expressions and rewrite engine
I want to translate:
domain.com/type/id
on
domain.com/index.php?type=type&id=id
I use
RewriteRule (\w+)/(\d+)$ ./index.php?id=$1&type=$2
...
0
votes
1answer
26 views
Url rewrite must start with and not ends with
I want a rewrite rule which checks a url. It should start with a condition and should not have an extention.
This is the rule I created for so far:
RewriteRule ^admin/?(.*)$ ...
1
vote
3answers
50 views
How do I stop a Regular Expression when I reach a certain character in PHP?
I have a string, /controller/method/parameter1/parameter2?parameter1=parameter2. This is just the REQUEST_URI I am using for my website.
I want to split this string into separate array elements using ...
1
vote
2answers
54 views
can't figure out correct logic of redirecting rules in .htaccess
I have a URL that has a query string like so:
www.blablabla.com/index.php?page=details&p_name=van-der-var&p_country=holland
I would like to rewrite the URL to look like this:
...
0
votes
0answers
93 views
Apache rewrite/redirect doesn't match any request, or fails to give Forbidden response [closed]
This should be a really trivial issue, but I didn't manage to find an answer in any questions here. Apologies if this has already been answered before.
I am trying to test the blocking of external ...
0
votes
0answers
29 views
Regex and IIS7 RewriteUrl to strip a query param from the url
I am trying to essentially strip a query param from my urls to merge some page rank.
I have a few urls that have the query param type=list or type=grid and I want this stripped out of the url via 301 ...
2
votes
1answer
61 views
FCGI & url issues while moving from Hiawatha
We are moving from Hiawatha webserver to Lighty.
I want to make this transfer as transparent as possible without making any change to FCGI application.
In Hiawatha, we have a configuration line in ...
1
vote
2answers
89 views
Friendly URLs htacess Rewrite Rule Regex [closed]
I am trying to figure out why my Rewrite Rule in my htacess file is not changing the URL to a more "SEO Friendly URL".
Here“s an example of what I mean:
I want to go from this:
...
0
votes
0answers
16 views
Mod_rewrite http://example.com/name123 to http://example.com/?userid=name123
I'm using Apache's .htaccess file.
I want to rewrite the long URL
http://example.com/?userid=name123
to short URL:
http://example.com/name123
By typing into the browser's address bar, it should ...
-1
votes
1answer
435 views
Nginx rewrite rule: redirect to subdirectory [closed]
Having a site with a /forum subdirectory, i.e http://example.com/forum
I want to redirect every request that comes to http://example.com/$uri to http://example.com/forum/$uri if $uri doesn't start ...
0
votes
0answers
47 views
RewriteRule matches (.*), but not specific path
Banging my head against the wall on this one. Url I'm working with http://example.com/test/somewhere
RewriteCond %{HTTP_HOST} ^example\.com [NC]
RewriteRule ^(.*)$ ...
0
votes
0answers
270 views
Nginx dynamic subdirectory rewrite
we have one application which work for subdomain, subdirectory and top level domain, before i was using apache2 and rewrite rule was as follow :
RewriteEngine On
RewriteBase /
RewriteCond ...
1
vote
1answer
32 views
Rewrite some URLs that does not end with slash and start with a some specif words
Actually I do this with PHP, but I want to do this on Apache level (.htaccess)
I want to make a 301 redirect on urls that start with: noticias|analises|meteorologia|artigos|videos and not end with ...
0
votes
0answers
91 views
lighttpd: Route everything except .css .jpg .png to /index.php?
I need to route everything except .css, .jpg and .png files to /index.php.
Currently I have these rewrite rules:
"^/?(.*)\.(jpg|png|css)$" => "$0",
"/*" => "index.php"
There is a security ...
1
vote
2answers
111 views
Regex don't match if URI contains extension
I'm getting stuck on a bit of regex, needed in an htaccess file on an old project I've taken on. I want to match the following uris
/page?id=12
/admin/users-view?id=3242
/subscribe
Where there may ...
0
votes
1answer
103 views
Nginx rewrite, whe url ends with more then one slash
I have some 404 page (example.com/404.html)
I want to forward all requests ending with more then one slash to it
for example
example.com- valid
example.com/- valid
example.com//- invalid, 404
...
1
vote
1answer
98 views
Rewrite search url in wordpress
I have tried several different .htaccess solutions as well as plugins, but nothing seems to be working. I have different links that use an url like this on my Wordpress site:
...
0
votes
0answers
217 views
Use variable inside regex rewrite test on nginx
I've got a network of Wordpress multisites running on nginx. I'm trying to set up caching using w3 total cache. I'm 99% there, but I'm just stuck on one rule.
I found some instructions that pointed ...
4
votes
1answer
198 views
ASP.NET Web Config Write, Remove .ASPX and Ignore Filenames with periods.
I've written a simple rewrite rule so I can remove the .aspx from all my page paths.
That way if someone types in http://www.domain.com/Contact, they will be taken to the contact page rather than ...
1
vote
2answers
139 views
Using URL Rewrite to remove folder from url redirect
Consider a structure as follow:
/folderx/a.aspx
/folderx/b.aspx
/foldery/c.aspx
/folderz/d.aspx
Currently browser shows/displays the following URLs Ā»
https://xxx.domain.yyy/folderx/a.aspx
...
2
votes
4answers
228 views
Redirecting home to page in subdirectory, mask url
I'm using wordpress.
I'd like my site's domain root to display contents of another page while still showing my domain root as the url.
EXAMPLE: "http://www.mysite.com" displays contents of ...
0
votes
1answer
80 views
How do I check if the cached version of a file exists with htaccess?
I'm using the following code to rewrite requests for pages toward the gzipped, cached static versions of dynamically generated PHP pages. I have two issues:
RewriteCond %{REQUEST_URI} !^/?cache/ ...
-1
votes
3answers
73 views
.htaccess rewrite not doing anything
I have a page with the URL of http://www.freshmarketstores.com/departments/produce/recipe.php?ing=Akane_Apples&recipe=59 that I would like to be cleaned up to look like ...
0
votes
1answer
525 views
Nginx location redirect regex not working
I want to redirect requests to /images/someimage.png on my server to http://some.other.server/images/someimage.png. I have the following in my nginx config:
location ^/images/.*(png|jpg|gif)$ {
...
1
vote
1answer
495 views
Nginx URL Rewrite with Multiple Parameters
I am trying to rewrite the following URL via Nginx:
http://www.domain.com/script.php?title=LONGSTRING&desc=LONGSTRING&file=LONGSTRING&id=THREELETTERS
into something like this:
...
0
votes
1answer
92 views
rewrite lighthttpd QSA
Help rewrite flag apache - QSA for lighttpd.
Now available:
RewriteRule ^([^?]*) index.php?_route_=$1 [L, QSA]
Try the case, but is not functioning properly:
url.rewrite-if-not-file = ...
0
votes
2answers
151 views
nginx Rewrite Rules to Re-write Every Match Of a Certain Regex Except
I'm writing rewrite rules in nginx.
I want to rewrite every URI that matches /A/B[anything] to /X/ except /A/B/C[/].
How do I do this?
What I've tried:
if ($request_uri ~ ^/A/B/C/?) {
...
2
votes
1answer
124 views
RewriteRule, can't make it work
URL:
http://mysite.com/amember/login.php?amember_redirect_url=/ajax/?id=9999
I need it to be rewritten to:
http://mysite.com/amember/login.php?amember_redirect_url=/?p=9999
I mean all of the urls of ...
0
votes
2answers
107 views
Htaccess redirect urls that match with Regular expression
I'm trying to redirect any url's that match the following criteria:
old-domain.com/marketplace/businesses/anything-here/ads/
...
0
votes
1answer
95 views
How can I redirect all url requests to index.php/path/variables except those starting with img/?
I have some simple RewriteRules that redirect all path variables to /index.php. But now I'm looking to make an exception for all /img/(.*) urls.
Here's a snippet. Please advise.
RewriteEngine On
...
0
votes
2answers
193 views
Redirection using .regex & htaccess to new URL with added query string
Trying to redirect old website blog archives using regex and .htaccess to be found under a new site's main archives using a query string including a category filter.
I am trying to make the following ...
0
votes
1answer
227 views
htaccess redirect using RewriteCond and RewriteRule - complex url using regex
I need to create a 301 redirect using htaccess.
Example :
Take this url (old): domain/page.html?pid=21&cid=730:pagetitle
redirect to (new): http://www.domain.co.uk/page/section/pagetitle
i ...
1
vote
1answer
124 views
regular expression: user_agent string contains “a” but not “b”
I'm trying to filter on user_agent and differentiate between iPhone and iPad. The user agent string reads:
Mozilla/5.0(ipad U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, ...
0
votes
3answers
250 views
.htaccess regular expression issue
I still have no answer about this so I'm posting it here.
I want to match an url in the form of root/language/sub/.../document in a .htaccess file and then rewrite it as ...
1
vote
1answer
115 views
Wordpress regex to match prefix/category 1/category 2/page number
I've written a Wordpress plugin which looks at a list of brand names and dumps out an ordered list of the letters that they start with e.g. A B C D ....
When the user clicks on any given letter it ...
0
votes
1answer
53 views
Rewrite rule for “/A/B” to “/B?id=A”
I'm tring to rewrite the following URL:
example.com/[name1]/[name2]
to:
example.com/[name2].htm?id=[name1]
I'm tring this rewrite rule:
rewrite ^/(\d+)/(.+)/ /$2?id=$1 last;
but it does ...
1
vote
2answers
203 views
How to rewrite a simple tokenizer to use regular expressions?
This an optimized version of the tokenizer that was first written, and it works fairly well. A secondary tokenizer can parse the output from this function to create classified tokens of greater ...
0
votes
2answers
66 views
RewriteRule loop in .htaccess not working
I'm trying to make pretty links for all the pages in a site,
I'd like foo.com/services/domestic to go to foo.com/index.php?page=services-domestic. I have the following in my .htaccess file and it's ...
0
votes
0answers
90 views
URL rewriting and .htaccess
I'm currently making my own website in PHP and I have some problems with my .htaccess (I don't understand it all). I used Drupal before and I had some links with ?q=content/ and, after some settings, ...
1
vote
1answer
331 views
Apache rewrite of word to lowercase
I need to rewrite a specific word to lowercase if it has an uppercase letter in it but not if it is entirely lowercase (if it matched that it would cause an infinite loop).
I came up with this but am ...
2
votes
1answer
294 views
mod_rewrite to nginx rewrite rules
I have converted most of my Apache HTTPd mod_rewrite rules over to nginx's HttpRewrite module (which calls PHP-FPM via FastCGI on every dynamic request). Simple rules which are defined by hard ...
0
votes
1answer
59 views
Generic IP Redirect for Robots
I help manage a few hundred websites, and we often get requests from the owners to prevent search engines from indexing their site's ip address. We then modify their redirects file to include the ...
0
votes
1answer
26 views
Having troubles having a rewrite not rewrite for something
I made a rewrite that rewrote the string, site.com/foo, to site.com/?loc=foo.php. It works fine, but when I enter site.com/foo.php, instead of rewriting to site.com/?loc=foo.php.php, it rewrites to ...




