0
votes
0answers
22 views

Helped to Make Url Rewrite

I am using following rewrite rules to redirect or not on SSL. First rule "Redirect to SSL" is working fine but second rule does not work as i required. If domain is mysite.tv/api then it do not ...
0
votes
1answer
13 views

How to exclude a RewriteRule?

I have the following RewritRule in my .htaccess what causes a problem for further actions: RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] Now I would like ...
0
votes
1answer
11 views

Rewrite with relative path

I am going nuts over a reqrite rule on my local machine... i even enabled the rewrite log and this is what i get from a single page load on the url it should rewrite: ip - - [21/May/2013:08:13:18 ...
1
vote
1answer
23 views

IIS7 URL Rewrite ignore rules in sub application

I have MyWebSite and MyApp as shown below: MyWebSite web.config MyApp web.config Pages page.aspx I want the next URL will work: www.mywebsite.com/oldpage.aspx ...
1
vote
1answer
32 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? ...
1
vote
1answer
32 views

IIS 7 Rewrite Rule with SSL Redirect

I am having and problem using IIS Rewrite rules to handle all scenarios of redirecting an old domain to my newdomain and newly enforcing a SSL connection. Here are the rules as I have them configured ...
1
vote
0answers
42 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
1answer
37 views

URL rewriting for video file htaccess

I want rewrite url http://site.com/videoplayback?pkey=05131305222303&hkey=a7432d324546a9b2c24abb4e81a26e67&tkey=l4i5w5s444&fkey=05131305222303.mp4 to ...
0
votes
0answers
30 views

Rewrite Rule not Working in IIS Server with PHP

Hi, friends. I'm creating an .htaccess file with rewrite rules. It's working fine in localhost, but on the live, server it's not working. My hosting uses a Window server. I wrote this Rule in my ...
0
votes
0answers
53 views

Problems with redirecting https to http with exceptions

We got a Magento website and the checkout, login etc. pages work fine they redirect automatically to https. But we have an issue with all other url’s because they are accessible thru http and https ...
0
votes
1answer
16 views

I need to rewrite a particular URL using .htaccess

I need to rewrite this particular url below as follows http://myexample.com/forum/addtopics.php?id=22&type=add to http://myexample.com/forum/category_name/add I used the rewrite as it ...
0
votes
0answers
28 views

URL Rewriting with Slim

I've just finished writing a basic REST API using Slim and I'm having problems getting URL rewriting to work, as we have our API dispatcher called "api.php" located in the root of our Apache webdocs ...
2
votes
2answers
50 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 ...
0
votes
1answer
34 views

Rewrite/Redirect URL using IIRF

IIS 6, using IIRF. I'm not sure if this would be a rewrite or a redirect. We've got a new site and need to 301 redirect old page to new and keep the query string value only. I need the following ...
1
vote
2answers
64 views

(htaccess) Rewrite English names of php files to their Dutch equivalents

I would like to rewrite the English names of php files to their Dutch equivalents. For example: someurl.com/news.php?readmore=4#comments should become someurl.com/nieuws.php?leesmeer=4#kommentaar. ...
0
votes
1answer
35 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 ^([^/.]+)$ ...
-2
votes
1answer
26 views

Multipe rewrite urls (domain.tld/blogs.php?user=username&post=postname TO username.domain.tld/posts/postname) [closed]

How i can rewrite urls from this domain.tld/blogs.php?user=username&post=postname to this one: username.domain.tld/posts/postname
0
votes
1answer
35 views

Wordpress prefix dynamic value to custom taxonomy url

I have two custom taxonomies 'edition' and 'features' I'd like wordpress to allow me to prefix the slug of features with a value from editions. For example if i go here; ...
0
votes
1answer
59 views

How to write htaccess rewrite for subdirectories recursively?

I have an Apache server, hosting a number of websites for my company. I plan to use htaccess, and rewrite the URLs from the "root" directory to a subfolder. Here is my real folder structure: /www ...
1
vote
1answer
41 views

IIS Re-Write Rule - Hide Directory (Rule Not Working Correctly)

I have constructed a re-write rule with help from this website. But I am still having a small problem. My objective is to remove a certain directory from a URL. For example: ...
0
votes
1answer
30 views

remove www URL site

I created a rule and it works fine (removes www from the url), except I have multiple domains pointing to the same source. How can apply this rule to specific address only, If I have 2 domains ...
2
votes
1answer
59 views

Is my HTACCESS causing too many mysql connections?

if anyone can help I would be VERY grateful. We have a CMS running 3 websites (international versions on separate domains) on the same hosting package which had been happily running for over a year ...
0
votes
1answer
27 views

url rewrite not working on my wamp please help me for this

My localhost link /work_Seo/blog-single.php?pid=6 and I want to change it into /work_Seo/blog/pid/6 my .htaccess: Options +FollowSymLinks RewriteEngine On RewriteRule ^work_Seo/blog/([0-9]+)/?$ ...
0
votes
2answers
49 views

RewriteCond %{REQUEST_URI} not working

I am trying to redirect all requests coming in to the web server as http://portal.company.com/legacy to http://portal.company.com/wps/portal/public/legacy/legacyportlet with the following rule, but it ...
1
vote
2answers
37 views

how do i redirect only php files with mod-rewrite (iirf)

I currently have redirects (using IIRF, but i believe this to be the same as .htaccess rules) set up so that all files don't get redirected, and just go straight to the filepath in the URL, but ...
0
votes
1answer
30 views

Rules conflicts in htaccess

I am working with my class on a project with an htaccess file that doesn't seem to work. I have this: SetEnvIf Request_URI ^ root=/myroot/ RewriteRule ^(assets|inc) - [L] RewriteRule ^section[/]?$ ...
-2
votes
1answer
36 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] ...
0
votes
0answers
43 views

What is the proper way to use add_rewrite_rule to remove the (question mark)?

I have a page called "People" with a custom template that takes in a variable called name: example.com/people/?name=FirstLast What I want is this: example.com/people/FristLast I know I need to use ...
-2
votes
1answer
25 views

simple htaccess rewrite rule needed [closed]

i need a htaccess rewrite rule for this: tags.geek.hr/some_tag -> tags.geek.hr/?tag=some_tag Any ideas? Thanks
1
vote
1answer
116 views

Web.config redirect one domain to non-https folder and another domain to https folder

I have a domain alias for my site. I would like to know how to redirect requests for domainA.ext to https://domainA.ext/folderA and requests for domainB.ext to http://domainB.ext/folderB Presently I ...
1
vote
2answers
24 views

Capture all instances of url inbetween / / but not if file

I've learned a bit about MVC from working with a Code Igniter project at my job, and so I'm trying to accomplish this: Before: index.php somepage.php secondpage.php All these files had ...
2
votes
1answer
46 views

Rewrite URL prefix into HTTP header

I'm trying to rewrite URLs as follows using rack-rewrite: /group1/feed becomes /feed, with header "GROUP_NAME" => "group1" Currently, I'm using a hacked version of rack-rewrite which allows me to ...
-2
votes
1answer
23 views

Multipe rewrite urls : domain.tld/posts.php?blog=&id= to domain.tld/posts/blog/id [closed]

How i can rewrite my urls from this domain.tld/posts.php?blog=&id= to this one: domain.tld/posts/blog/id
0
votes
0answers
47 views

htaccess to redirect into another sub folder with cake installation

I have a case where I have cake1.1 structure at root and one inside a folder. On a specific pattern I have to redirect to the internal cake installation with the query string so that it appears that ...
0
votes
1answer
54 views

How do I redirect subdomains that do not exist?

I am trying to redirect using .htaccess in the following fashion. I am not all that familiar with .htaccess, so I'm not sure it can be done. Also, I don't know if how I am intending to do it follows ...
0
votes
2answers
94 views

Remove .php from example.com/test.php/foo/bar

I'm looking for a way to simply remove ".php" from a url while ignoring everything after the .php So example.com/test.php/foo/bar would become example.com/test/foo/bar and then in the PHP template I ...
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
85 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
56 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
3answers
93 views

Remove parts of url

http://website.com/wp-content/uploads/a87ff.gif how do I do a mod rewrite to change it to http://website.com/a87ff htaccess looks like this # BEGIN WordPress # END WordPress # BEGIN wtwp_cache # ...
0
votes
1answer
48 views

add_action not working in wordpress

I am setting a WP that it should redirect all the request made to sub-directory to file inside that directory. For example if there a visit on example.com/link/me then it should send the user to ...
1
vote
1answer
142 views

Create .htaccess Rewrite rule same as wordpress

I am Creating Rewrite Rule in .htaccess I have some issue i am creating Rule like wordpress but i didnt get correctly The Rule which i am writing is below `RewriteRule projectDir/(.*)/(.*)/(.*)$ ...
0
votes
1answer
56 views

.htaccess rewrite from sub directory to top level domain [closed]

I have a domain set up as shop.mydomain.com - however the domain name is changing to just www.mydomain.com So, all traffic that comes in for shop.mydomain.com, needs to redirect to www.mydomain.com ...
0
votes
0answers
76 views

nginx - rewrite only www to non-www

I'm trying to redirect www.example.com to example.com This is my nginx rewrite rule: server { listen 80; server_name www.upinbangalore.com; return 301 ...
-1
votes
1answer
29 views

Redirect only home page

I need to redirect only http://shop.test.com to http://www.test.com/fedex-orders/ Just homepage. Nothing else. ie http://shop.test.com/?page=blog should NOT redirect.
1
vote
2answers
89 views

Rewrite rule .htaccess from blog.domain.com/anypath to www.domain.com/blog/anypath

I'm trying to write a rule in my .htaccess file so that any visitors from blog.domain.com/anypath are redirected to www.domain.com/blog/anypath The rule that I've written below only seem to redirect ...
0
votes
1answer
24 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 ...
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 ...
2
votes
2answers
111 views

URL Redirect/Rewrite when opened from Mobile Browser

We are working on two website, where one is webapplication and another is mobile application. So my requirement is to create a redirection url to redirect from webapplication to mobile application ...
0
votes
0answers
12 views

IIS 7 rewrites: Exclusing a page

I've added some nice rewrites using IIS 7 re-writes, only problem is its working a little too and adding a slash to every single page even on a query I have set a rule to add a trailing slash which ...

1 2 3 4 5 7