0
votes
1answer
31 views

laravel internal 500 error

I uploaded my website to a server that is using windows server 2008 r2 and Im getting a problem ( I think its caused because of the .htaccess files ) I get internal 500 error message, im using xampp ...
0
votes
0answers
16 views

website internal redirect show same domain with query parameters

I have a java-ee website with dynamic subsites for clients which are accesible via query params. Similar to the following pattern: www.service.com?client=1&param1=value1 Now I want to buy some ...
1
vote
0answers
180 views

Apache .htaccess: Request exceeded the limit of 10 internal redirects due to probable configuration error

I have a problem with my .htaccess configuration on my server. Using a combination of many pieces of advice i have found on here and my own limited knowledge i have put together a .htaccess file that ...
0
votes
0answers
38 views

internal server error 500 whne i make a subdomain

in have an site , for example : mysite.com when i make a sub domain (domain.mysite.com), the internal server error appear to me for that subdomain Internal Server Error The server encountered an ...
0
votes
0answers
46 views

mod_rewrite won't let me load .php-files (but any other file)?

This .htaccess-file seems to do what it should at about 15 different webhosts, except one. Everything except url:s containing the folder "wwwdocs" should be handled by /index.php Everything works ...
0
votes
1answer
98 views

htaccess rewrite_rule causes loop; wordpress internal server error

A few days ago our website got attacked by several identified referer websites. the errorlog gets filled with around 1Gb failed requests daily and lots of internal sevrer errors in the wordpress ...
0
votes
1answer
79 views

Htaccess URLRewrite to another map

When i go to {url}/klanten/home/ or {url}/klanten/logout/ a 500 Internal Server Error come. My htaccess: RewriteEngine on RewriteRule ^klanten/([^/]+)/?$ klanten/$1.php [L,QSA,NC] RewriteRule ...
0
votes
1answer
99 views

multiple internal redirects to different indexes in folders

I'm new to htaccess and I'm searching for a way to get an internal redirect to set 2 URLs to different folders. example.com/cms/ and everything behind the /cms/ needs to go to rootfolder -> cms ...
1
vote
1answer
342 views

.htaccess redirect on external linking

I would like a website to initially display intro.html when coming from external websites like google, or just from typing in the url. This intro.html and all internal links will link to index.php ...
1
vote
2answers
366 views

htaccess internal and external request distinction

I have a problem with an .htaccess file. I've tried googling but could not find anything helpful. I have an AJAX request loading pages into the index.php. The link triggering it is getting prepended ...
1
vote
1answer
541 views

.htaccess - How to hide the internal directory used by subdomains?

I installed a small FTP space for my classmates which allows them to upload school related documents to my server. After the files have been uploaded, they can be easily accessed via a subdomain i.e. ...
0
votes
2answers
4k views

How Do I make a simple .htaccess internal redirect Catch All script while forwarding POST data?

I just want to catch all requests and forward them internally to my catchall page with all POST data intact Catch all page: http://www.mydomain.com/addons/redirect/catch-all.php I've tried so many ...