0
votes
2answers
41 views

Using htaccess and mod_rewrite to display new-page instead of newpage

I'm working on my website and I created a few new web pages that explains more details of my website. Now for seo purposes I know google prefers for the link to contain the key words. So the pages I'm ...
0
votes
3answers
22 views

Order of rules in .htaccess file

I have an .htaccess file like this: RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^foo.*$ /cgi/foo.cgi [L] RewriteRule ^.*$ /cgi/fallback.cgi ...
0
votes
1answer
8 views

Redirect index.php to root, and www to non www with rewrite_mod

someone knows how can i redirect in the .htaccess this rules bellow ? http://www.domain.com/index.php to http://domain.com and http://www.domain.com to http://domain.com many tanks
0
votes
1answer
15 views

How to map three Websites under one domain to their folders with mod_rewrite only?

I have a project that has a splash page that points to two separate sites. The sites are hosted on the same server and they should be in separate folders for better maintenance. The folder structure ...
0
votes
0answers
28 views

htaccess forward one url differently

I am learning my way around the MVC framework. One of those aspects is the htaccess file, to clean up that URL. Now, I've finally come up with the htaccess you see below, but need to accomplish 3 more ...
0
votes
1answer
6 views

Redirecting with htaccess rewrite map

I am using following code to redirect all url with capital case latter in it to equalant small-case version of same url. RewriteEngine On RewriteCond %{REQUEST_URI} [A-Z] RewriteRule (.*) ${lc:$1} ...
0
votes
0answers
40 views

how to set “ShibRequireSession” on or off for a URL in htaccess

I want some thing like this, when a user visits a url www.example.com no rules is applied on it but, when user visits www.example.com/something else rules should be like, ...
1
vote
0answers
49 views

MVC Internal Server Error

I'm trying to build an PHP MVC. I currently watching this tutorial link But from the start its not working. I'm running it in WAMP It gives me this error: Internal Server Error The server ...
0
votes
0answers
25 views

.htaccess 301 redirection removing white space [duplicate]

My site link is containing name with lots of white space in parameter. file.php?dir=Songs/Bollywood%20Mp3/I%20Dont%20Luv%20U-2013 file.php?dir=Songs/Bollywood%20Mp3/Go%20Goa%20Gone-2013 ...
0
votes
1answer
12 views

Htaccess Not Working - Redirect 301

Due to some bad URLs, we generated some links that don't work and I want to redirect them with a 301 redirect to clear up some webmaster tools issues with Google. So, we have this URL like this: ...
0
votes
2answers
19 views

301 redirect but change URL to all lower case in apache

I'd like to set up a 301 redirect in Apache to change the case of the original address before redirecting. So for example if someone enters: www.website1.com/UsErOfMiXedCase it should forward to ...
0
votes
1answer
15 views

Mod_write, htaccess and Wordpress slugs

This is either blindingly simple or impossible; after lots of Googling and thread reading, I can't tell. I have a WordPress site that uses a plugin to create a custom post type. The rub of this is ...
0
votes
2answers
33 views

Redirect to public folder when using ZF2

I'm using ZF2 (Zend Framework 2, v2.2) and I would like that http://www.foo.com/path/to/app/ redirect to the public folder. I've tried a lot of solution but not of them allow the url to point to ...
0
votes
1answer
27 views

htaccess - One clean URL working but not the other

htaccess files have never been a strong point for me unfortunately. I'll just jump right in: #Turn RewriteEngine on Options +FollowSymLinks RewriteEngine on #Canonicalize URL ...
0
votes
0answers
8 views

How to move old static webpages from htmlroot to subdirectory without rewriting its html code and still have access via old URL

Old static webpages sitting in htmlroot and having stylesheet and script like below, plus other htlm documents having URLs relative to root. <link rel="StyleSheet" href="/style.css" ...
-2
votes
0answers
11 views

I change part of site web structure and want to make RedirectMatch permanent [closed]

In my old site web structure i'm using requests like www.mydomain.com/fiche.php?id=45 in my new structure these requests are : www.mydomain.com/annuaire.php?detail=fiche&id_marq=45 how ...
0
votes
4answers
34 views

mod_rewrite domain to directory

I want rewrite example.com url to example.com/ru For example if url is example.com/books I want have example.com/ru/books I think I can't this do with header() function This method is also ...
0
votes
1answer
16 views

simple permanent redirect 301 dynamic url to static url page

what is best rule for 301 redirect http://iwanet.org/iwa-membership/51?start=4 to this page http://iwanet.org/about/web-professional-standards/
0
votes
1answer
15 views

Remove specific query string key/value pairs in htaccess (but leave others intact)

I'd like to build an ISAPI_Rewrite 3 "RewriteRule" to handle the following permanent redirects: ╔════════════════════════════════╦════════════════════════════╗ ║ Input ║ ...
1
vote
2answers
10 views

.htaccess redirect if search word has some string before it

I need help with creating some .htaccess rules. Currently I have this: RewriteEngine On Redirect 404 /favicon.ico #Check if request was made for RSS feed RewriteCond %{REQUEST_URI} ...
0
votes
1answer
13 views

Wordpress .htaccess Rewrite Rule for URLs after Change Root

WordPress: 3.5.1 How do I modify my .htaccess file to Rewrite/redirect old URL paths to the new paths after placing WordPress in its own sub-directory (using ...
0
votes
1answer
14 views

How to remove index.php from middle of URL

I am using .htaccess redirection rule for removing index.php from URL and it works good when I try to access mysite.com/index.php redirecting me on mysite.com. Redirection rule I use in .htaccess is ...
0
votes
1answer
23 views

Using .htaccess to change directory in url

I am trying to change the url that is displayed in the address bar from mysite.com/blog/wedding-hair/ to mysite.com/services/wedding-hair/ using .htaccess. Using answers from: assigning different ...
0
votes
0answers
17 views

.htaccess rewrite rules: category id page not being changed

I'm new to rewrite rules in .htaccess, and I'm having some trouble. I have the following working well, so that www.mydomain.com/index.php is changed to www.mydomain.com Options +FollowSymLinks ...
0
votes
2answers
14 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
16 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
1answer
22 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
10 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
23 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
1answer
15 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 # ...
0
votes
1answer
15 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
1answer
20 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
21 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} ...
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
26 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
24 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
35 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
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 (.*) ...
1
vote
2answers
55 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 ...
0
votes
0answers
26 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
11 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 ...
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
1answer
31 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
16 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
30 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
26 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
15 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 2 3 4 5 127