Directory-level configuration file found mostly on Apache web servers

learn more… | top users | synonyms (1)

1
vote
1answer
21 views

Is there an API or programmatic way to convert “.htaccess” rewrites to “web.config” IIS Rewrites?

I know I can do it in IIS Manager, but I am looking for some programmatic way to do it. We need to do this for customer all the time. So it would be great if there's a programmatic way of doing so.
1
vote
1answer
38 views

Is there any way to debug redirection rules in.htaccess?

I have an .htaccess file with over 200 redirection rules. It seems some of them are conflicting each other. Is there any way to find out which one is responsible of redirect on a particular request? ...
1
vote
0answers
17 views

Problem with my subdomain with .htaccess root as subdir

I am working on a site making my subdir to appear as root just like //domain.com/ is //domain.com/subdir and also access/load files hiding the subdir. My site have this .htaccess(below) and its ...
0
votes
0answers
11 views

shared hosting: what changes should be made on in .htaccess file [on hold]

I hosted a site on my shared server. You can find it here. But when I click another link (just like about me ) on this site, it is redirecting to the shares server address. What changes should be made ...
0
votes
1answer
19 views

Getting problem in removeing end slash from directory

this is my code but i tried many ways but it is not working and i am not able to remove the end slash from the directory RewriteEngine On RewriteBase / # remove enter code here.php; use THE_REQUEST ...
1
vote
1answer
75 views

.htaccess redirect of domain name alias to main domain but must show up as the alias domain

I have the following in a .htaccess file: RewriteCond %{HTTP_HOST} ^www\.aliasdomain\.com$ [OR] RewriteCond %{HTTP_HOST} ^aliasdomain\.com$ RewriteRule ^(.*)$ ...
1
vote
2answers
50 views

Mod-rewrite rule broken after host upgrade to Apache 2.4

I use the following code on my site to remove php extension from links: RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond ...
1
vote
1answer
119 views

Why does this .htaccess loop?

if I try to redirect any page on a certain domain to one specific page (SEO does not matter, here), this ends in a loop - but I don't get why: RewriteCond %{HTTP_HOST} ^domain.com$ [NC] RewriteCond ...
1
vote
1answer
28 views

htaccess only works for one

I currently use the following htaccess code to remove php extensions and also allow the /index.php page to load without the word "index": RewriteRule ^$ index.php [L] RewriteCond %{REQUEST_FILENAME} ...
1
vote
1answer
82 views

Mod rewrite is not working or doing anything

So I've used an online .htaccess editor and it's not working for some reason on my test server, here's the content of my .htaccess file. RewriteEngine On RewriteRule ^Page/([^/]*)/$ /?Page=$1 [L] I ...
0
votes
0answers
11 views

Shorten the URL in apache2.conf [duplicate]

I've just started using apache and I'm trying to change the urls from www.test.com/dashboard.php/page1 to www.test.com/page1 in appache's config file. This has to be done for all URLs so I'm doing it ...
0
votes
1answer
33 views

One .htaccess file with rewrite rules for all domains

Our server is configured with multiple domains which reside in subfolders of the public_html folder. So domain1.com is located in /home/user/public_html/domain1.com and domain2.com is located in ...
1
vote
1answer
44 views

How to keep my site error-free after chaning my site's URLS?

My site is almost static. It has 64 pages. These pages before today were named with underscore. After checking my sites SEO with WooRank, the site advices me to change underscore links to dash links. ...
0
votes
1answer
25 views

Cyclic redirection in .htaccess

I have the following .htaccess file: AddDefaultCharset utf-8 RewriteEngine on Options +SymLinksIfOwnerMatch RewriteBase / # redirect all www-requests to no-www # - RewriteCond %{HTTP_HOST} ...
3
votes
2answers
100 views

One million redirects

What's the best way to redirect 1,000,000 unique URLs to another 1,000,000 unique URLs? These pages are all combinations of multiple search filters and queries. We're migrating the site to cleaner ...

1 2 3 4 5 34
15 30 50 per page