mod-rewrite

ModRewrite weird redirect behavior on removing WWW

Hi, I'm trying to use some rule on my project to remove www from the beginning of the URL but I've some problem. my server structure is: domain.com/beta_folder domain.com/beta_folder/page+type domain.com/beta_folder/page+type/content+name domain.com/beta_folder/page+type/content+name/edit domain.com/beta_folder/page+type/content+name/e...

Apache mod_rewrite help with Wordpress

I administer my wife's site, namelymarly.com. Up until last week, the root page of the blog was namelymarly.com/blog/. Last week I changed it in the WP settings to be namelymarly.com. WP created the new htaccess file, and I moved the index.php to the root directory (but left the WP folder where it was in the /blog/ directory), as instr...

using .htaccess to redirect from friendly url to actual file

I have the following RewriteRule in my .htaccess to redirect from a friendly url to my main application file: RewriteRule ^\/(.*).html$ home/www/page.php?p=$1 [L] This should send any url that points to a html page to page.php with the url as a parameter that will be parsed by the app. This works for urls that look like http://www.exa...

redirecting directories with a few exceptions using .htaccess and mod_rewrite

I'm using mod_rewrite in a ManagedFusion settings file (similar to .htaccess) and I want to forward all incoming requests to another port on the server, except for a few folders. So far I have this (with the folder ui, forms, clientsystem and widgets being ignored) RewriteEngine On RewriteCond %{REQUEST_URI} !ui$ RewriteCond %{REQUE...

How would I write a RewriteRule to make an exception for one file

I currently have this in my .htaccess file: Options +FollowSymLinks RewriteEngine On RewriteRule ^(.*)\.html$ index.php?pagename=$1&%{QUERY_STRING} The the html file name is rewritten to the pagename query string. However I'm trying to allow access to one particular static html file, so somehow I need to overwrite the rule or ...

Redirect additional domains to the single in use-domain using Apache mod_rewrite in .htaccess

RewriteEngine On RewriteCond %{HTTP_HOST} ^someparkeddomain.com RewriteRule ^(.*)$ hxtp://www.thedomainUsed.co.uk/$1 [R=301,L] RewriteCond %{HTTP_HOST} ^www.someparkeddomain.com RewriteRule ^(.*)$ hxtp://www.thedomainUsed.co.uk/$1 [R=301,L] RewriteCond %{HTTP_HOST} ^anotherparkeddomain.co.uk RewriteRule ^(.*)$ hxtp://www.thedomainU...

mod_rewrite with GET requests

I have mod_rewrite working on most of my site. Right now I have a search that normally would point to search.php?keyword=KEYWORD And I'm trying to rewrite that to search/?keyword=KEYWORD Just to make it a little bit cleaner. So here's my mod_rewrite. (There are other rules I'm just posting the one that isn't working.) RewriteRule...

.htaccess with public folder

I have a directory structure with the following on localhost: http://localhost/testing/ A directory structure exists inside of testing as follows: /testing/public /testing/public/index.php /testing/public/img /testing/public/css ..etc for the js and swf directories A .htaccess file is inside the testing folder and the contents are a...

Apache mod rewrite .htaccess

Hello, Can anyone help to solve problem with overriding in apache2 ? I have enabled mod_rewrite in apache2. ut apache just ignores my .htaccess file with rewrite rules. When I add this line to my .htaccess file: This is my virtual host configuration: <VirtualHost *:80> ServerName www.modomain.eu ServerAlias mydomain.eu *.mydomain....

how do I redirect from one page to another with mod_rewrite?

All the advice online says do: rewrite 301 URL-A URL-B But that won't work if I turn on mod_rewrite (it seems?) with RewriteEngine on So, I'm bad a regex, but shouldn't need it here. How do I do: RewriteCond %{HTTP_HOST} ^untamed-adventures.com/travel/How/tabid/58/Default.aspx [NC] RewriteRule ^(.*)$ http://untamed-adventures.com/ ...

mod_rewrite apache

is there any way to hide redirected url, here is what I think: RewriteEngine On RewriteCond %{REQUEST_FILENAME} -f RewriteRule ^(.*)$ http://minteddomain.com/mint/pepper/tillkruess/downloads/tracker.php?url=http://%{HTTP_HOST}%{REQUEST_URI}&amp;force So the long redirected url http://minteddomain.com/mint/pepper/tillkruess/downloads/t...

Mod_rewrite condition not working

Hello. I've checked the regexs and they all match but for some reason its not working in mod_rewrite? I would like http://www.system.com/chips/intel?c=xxx to read: http://www.system.com/chips/intel/xxx I have: RewriteCond %{REQUEST_URI} (c=.*)$ RewriteRule (/([^/]+)/?).*?c=(.*) http://%{SERVER_NAME}/$1/$2/ [L] And I'm getting a...

RewriteRule to RewriteRule?

I want to write a RewriteRule to another RewriteRule, but I can't seem to get things to work. I'm having troubel with the line RewriteRule ^(eTool/)?(RENDER/\d+/\d+/\d+/\d+\.html)$ render-product?url=$2 [L,NC] in this file: RewriteEngine On RewriteBase / RewriteRule ^(eTool/)?(RENDER/\d+/\d+/\d+/\d+\.html)$ render-product?url=$2 [L...

How to Redirect Subdomains to Other Domain

What I'm trying to accomplish with htaccess mod-rewrite: Redirect all sub-domains to new domain name w rewrite rule. e.g. test1.olddomain.com ===> test1.newdomain.com test2.olddomain.com ===> test2.newdomain.com test3.olddomain.com ===> test3.newdomain.com This is what I have so far which of course is wrong: Options +Foll...

How can I redirect with mod_rewrite an url with querystring url

I'm making a bookmarklet and I want to do the next, figure, I have the url http :// mydomain.com/http :// otherdomain.com the url internal redirect to: http :// mydomain.com/?url=http :// otherdomain.com but the url will still http :// mydomain.com/http :// otherdomain.com I was trying a lot but I cant do ir I get an 500 error all ...

Need help with a RewriteRule - Apache

Here's what I want to do: http://www.mysite.com/ > http://www.mysite.com/index.php http://www.mysite.com/asd > http://www.mysite.com/index.php?page=$1 asd will be the name of the page(s) that get appended to index.php's $page variable. My current rewrite rule successfully redirects the requested page but fails to load th...

Apache mod rewrite rules to Zeus rewrite rules

Hi, This morning I wanted to move my development website online (in a protected folder), but I figured out that our host (on a shared server) does not use apache mod_rewrite but Zeus rules. I've never heard about that before but it seems that apache rules could be automatically converted via a command line, but as you can guess I have no...

MOD Rewrite Mask for Image URL

Okay so I am launching a cloned e-commerce site. I want to create a rewrite rule for the image folder for the second site to fetch images from the first site. RewriteRule ^alice.gif$ www.rhinomart.com/images/h_home.gif When I go to alice.gif directly through the browser it simply redirects me to the rhinomart.com URL and image. How...

mod_rewrite - fixed and variable query string params

I want to send www.mydomain.com/approve/SomeFunkyVariable to www.mydomain.com/home/index.php?option=com_content&task=view&id=574&Itemid=85&approve=someFunkyVariable What is the rule for this? ...

Using .htaccess to change my website URLs

I have some pages organised like this: http://localhost/index.html http://localhost/download.html http://localhost/contact.html And I need them changed to suit the following URL structure: http://localhost/ http://localhost/download http://localhost/contact Without making sub directories and putting in pages as index.html. As far a...