Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
399 views

Faking the 'path' of a cookie - via .htaccess / javascript / or otherwise?

Background I have php/js software (Piwik), which sets a cookie to track visits to the site. Our site (ie; not Piwik) is setup so that all URLs (except for resources) are written back to ...
4
votes
1answer
2k views

Apache .htaccess to redirect index.html to root, why FollowSymlinks and RewriteBase?

In order to redirect all somefolder/index.html (and also somefolder/index.htm) to somefolder/ I use this simple rewrite rule in Apache .htaccess file: RewriteEngine on RewriteCond %{THE_REQUEST} ...
4
votes
2answers
2k views

With mod_rewrite can I specify a RewriteBase within a RewriteCond?

I'd like to have my .htaccess file specify a different RewriteBase depending on whether the .htaccess file is on my local machine or on a web server. This is the mod_rewrite code I tried, however, it ...
3
votes
3answers
960 views

Why is Apache's RewriteRule revealing local paths?

I'm trying to use RewriteRules in .htaccess with relative paths, but Apache seems to want to output the physical path instead of the server path whenever I try to output a relative path. Absolute and ...
1
vote
1answer
65 views

redirecting subdomain to subfolders not containing an index.php with .htaccess

i am getting a 500 internal server error with the following: RewriteCond %{HTTP_HOST} ^data\.mysite\.com$ [NC] RewriteRule ^(.*)$ data/$1 [L,QSA] -----------------??? when i replace the RewriteRule ...
1
vote
2answers
417 views

.htaccess in root and subfolder, each to redirect to own index.php

I apologise for a seemingly duplicate question, but none of the dozens I've looked at actually had the same problem. I have the following directory structure: /.htaccess /index.php ...
1
vote
2answers
306 views

How to get file directory trough .htaccess by using `RewriteRule ^(.*)$ ?id=$1 [L,QSA]`?

How to get file directory trough .htaccess by using RewriteRule ^(.*)$ ?id=$1 [L,QSA]? If .htaccess is located in http://localhost/some/dir/.htaccess and I'm opening ...
1
vote
1answer
700 views

Multilanguage site, redirect based on cookie or accept-language (RewriteRule)

A few weeks ago i asked a question about a multilanguage site (see http://stackoverflow.com/questions/3439668). That works perfect (thanks for that) But since I want to make my website nicer and I ...
1
vote
1answer
894 views

Many RewriteBase in one .htaccess file?

I have a domain and a wordpress-blog on same server. Now I have a problem (surprise). The wordpress is located on /httpdocs/blog/ and domain is pointing to /httpdocs/ and I'm trying to redirect it to ...
0
votes
1answer
95 views

change RewriteBase depending on domain

I have to set RewriteBase depending on the domain, right now RewriteBase is set to ~/myusername/folder/site.com, if someone opens http://mydomain.com it redirects to (shared HTTPS) ...
0
votes
1answer
106 views

redirecting subdomain to subfolders with .htaccess

i am trying to redirect a subdomain to a subfolder i have 3 sub-domains pointing to a folder named "test" placed on the root (/test) subdomain1.mysite.com subdomain2.mysite.com ...
0
votes
2answers
130 views

Does WordPress do something that overrides .htaccess?

I'm working locally on a WordPress site for a client. The client keeps their install of wordpress in the server root, but because I have more than one client, I like to install everything in a client ...
0
votes
1answer
105 views

I need some help with doing a RewriteBase for .htaccess

I recently got an arcade script through a membership site that I belong to. The owner of the site offered free install of the script. I registered a domain name and got a hosting account with ...
0
votes
1answer
262 views

.htaccess regex in RewriteRule matches, variables remain empty

I have some conditions and rules in my .htaccess: RewriteCond %{DOCUMENT_ROOT}/assets/img$1/.$2.$4/$3.$4 -f RewriteRule ^assets/img(.*)/[a-zA-Z0-9-_\.]*\.[^/]+\.[a-z]{2,4}$ assets/img$1/.$2.$4/$3.$4 ...
0
votes
2answers
608 views

Base Href vs. .htaccess RewriteBase

Normally I use <base href="http://domain.com/" /><!--[if ie]></base><![endif]--> I haven't tried much with RewriteBase, I normally get confused and keep changing it till ...
0
votes
1answer
772 views

How to use RewriteBase in .htaccess to rewrite img tags?

I guess I don't understand RewriteBase. I have a (drupal) site built on my dev server and everything works perfectly. I created a fake URL for it in my own apache and hosts file, so I get to my ...