Tagged Questions
0
votes
3answers
238 views
Nginx rewrite 404
I've spent ages looking on google for any information, and asked around some people (before anyone suggests I go and do so).
The bits of my nginx.conf that aren't working properly are below.
What's ...
0
votes
3answers
154 views
FollowSymlinks .htaccess Rewrite Rule 404 Error
My real URL is:
www.mysite.com/site/index.php
I need:
www.mysite.com/home.html
I write in the .htaccess:
Options +FollowSymlinks
RewriteEngine On
RewriteRule (.*)/home.html$ /site/index.php
...
0
votes
1answer
97 views
Using mod_rewrite to return 404 for all requests on http [closed]
I am configuring apache to create a site that will use mod_jk to connect to an app running on tomcat.
I only want https requests to access my app and I would like to use mod_rewrite to return a 404 ...
0
votes
1answer
43 views
Mod Rewrites won't go to “404 page not found” for non existing pages
I have the following code which works great:
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^([a-zA-Z0-9_-]+)/?$ index.php?mode=$1 [QSA]
RewriteRule ^([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)/?$ ...
0
votes
2answers
137 views
mod_rewrite 404 Error
I've been looking at the posts and some Google Groups stuffs for fixing mod_rewrite for use with CakePHP (as well as the CakePHP docs), but I can't seem to get mod_rewrite to work correctly.
CakePHP ...
0
votes
1answer
165 views
htaccess 404 redirect not working
I am trying to setup a custom 404 page for my website using: ErrorDocument 404 /404.html but when I add this, going to domain.com/dslkjflsdkjflskdjf doesn't redirect to the 404 page. Instead, it ...
0
votes
1answer
114 views
CakePHP Redirect 404s
I'm trying to learn CakePHP for the first time (I usually just straight code PHP), and I'm starting with the 'official' Blog Tutorial they host:
...
0
votes
1answer
62 views
.htaccess rewrite returning content but returns 404 header status
I have some rewrites in my .htaccess file which look like this (I've changed file/var names, but essentially the same):
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond ...
0
votes
0answers
24 views
RewriteRule: TAGS to homepage
I have a lot of URLs with deleted TAGS, like:
www . example . com / tag / tagsname
Which are indexed by Google and giving back 404 errors.
What is correct RewriteRule for .htaccess (I'm running a ...
3
votes
2answers
84 views
Getting 301 instead of 404 when adding trailing slash to URL
I've been working for hours in this and can't find information about it. Well yes, there is information, but I can only find separate solutions that don't work put toguether.
I'm trying to start from ...
0
votes
1answer
82 views
Display 404 error when a certain URL is accessed using a specific sub-domain
I have two sub-domains that point to the exact same files. I use server-side code to control the styling/images. I want a particular page to be accessible to only one of the sub-domains. How can I ...
0
votes
4answers
101 views
Mod-Rewrite rules are breaking 404 routing
I am using the following mod-rewrite in my .htaccess file:
RewriteRule ^$ pages/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ pages/$1 [L]
The ...
0
votes
1answer
30 views
How to add a 404 for a specific URL in htaccess
I have a page at http://www.example.com/my-inner-page. I need my server to respond with a 404 when someone tries to access this url. What is the rule I would use in htaccess to accomplish this?
...
0
votes
1answer
22 views
does mod_rewrite output have to exist?
I am trying to use mod_rewrite to generate cleaner urls.
I have the following in my .htaccess
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteRule ^mypage.php$ ...
0
votes
1answer
174 views
Codeigniter Page Not Found , change in .htacess
I was working on my test live server , i made some changes in a file and saved it , suddenly the whole website crashed.
When i now log to my test server(http://www.uplits.com/). It shows a Directory ...
0
votes
1answer
100 views
mod_rewrite Friendly URL clashing with 404
I've been struggling with my mod_rewrite for a while now and I thought I'd cracked it…
My CMS generates blog post URLs with post.php?s= and I've been trying to remove this part of the URL so that ...
0
votes
1answer
109 views
mod_rewrite to avoid duplicate content after clean urls
I have the typical mod_rewrite rules to make urls prettier
RewriteRule ^most-viewed-([0-9]+)$ index.php?views=$1
But somehow, Google managed to get the index.php?views= version too, so now, in ...
0
votes
3answers
1k views
jQuery trying to load a non existant ajax-loader.gif mod-rewrite doesn't work
If you visit this page in Chrome:
http://www.immigrationconsult.org/contact.php
And Inspect Element on the page, go to Console you will see this error:
GET htt...cms/contact/images/ajax-loader.gif ...
2
votes
1answer
65 views
how to redirect all /?[xyz] to 404
I've tried a number of things... I know I'm missing something. Help!!
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^\? - [R=404,L]
</IfModule>
0
votes
1answer
448 views
htaccess *.php to *.html object not found error
I am trying to transform URLs from index.php to index.html, servicii.php to servicii.html and so on.
I wrote in my .htaccess file, which is in my site root the following code:
<IfModule ...
0
votes
0answers
246 views
.htaccess redirect all traffic from old site, to new site's search script using the old permalinks
The old site has permalinks, and has been up for a long time. The new site has different permalinks and a different URL.
So http://store.olddomain.com/product-name-goes-here.html is the old site and ...
2
votes
2answers
2k views
Apache https redirection results in 400 error
This issue is happening on a Red Hat instance. The apache installed is version [Apache/2.2.19] and the mod_ssl version is [2.2.16.]
HTTP access works fine, but when mod_rewrite is enabled for http to ...
0
votes
2answers
115 views
mod_rewrite not finding index file?
I have made a mod_rewrite condition that will just add a parameter to the index.php file. Here it is:
RewriteEngine On
RewriteRule ^(electronic|classical|reggae)$ index.php?genre=$1
When I do ...
1
vote
1answer
480 views
add trailing slash to 404 url so it can be redirected
Situation: moved old WordPress site to new domain; same permalink structure, 301'd $1
Shortly before the move, the tags had been cleaned up; reduced from over 2000 tags to a dozen or so tags; altho ...
2
votes
4answers
3k views
mod rewrite to remove file extension, add trailing slash, remove www and redirect to 404 if no file/directory is available
I would like to create rewrite rules in my .htaccess file to do the following:
When accessed via domain.com/abc.php: remove the file extension, append a trailing slash and load the abc.php file. url ...
0
votes
2answers
217 views
mod_rewrite and .htaccess 404ing in a subdirectory
For example:
Dir structure
localhost/
|- test/
|- index.php
|- .htaccess
index.php:
<?php
if(isset($_GET['cmd'])){
echo "cmd is ok";
}
?>
.htaccess
...
0
votes
1answer
372 views
How to configure .htaccess file for rewrite rules to get rid of extensions, trailing slashes, www?
This is what I want -
When somebody enters site.com/page.php or site.com/page or site.com/page/ , all should work the same, and the url displayed in the address bar should be site.com/page [ I don't ...
0
votes
2answers
2k views
Custom 404 Rewrite + Exclude main dir from rewriting
I use .htaccess to display my 404 page, while showing the requested URL in the browser instead of the actual 404 URL. To do so, I have this line in my .htaccess:
RewriteCond %{REQUEST_FILENAME} !-f
...
2
votes
1answer
1k views
nginx proxy and 404 redirect
Hi I would like configure my nginx server to proxy for amazon S3 and do something like mod_rewrite in apache - if proxy for amazon is 404 (file does'nt exist on amazon) then redirect me to my local ...
4
votes
2answers
64 views
substituting an URL only if a file was found using mod_rewrite
here's how I do :
the user types a URL
the mod_rewrite handles URLs of the form : ^([^/\.]+)/?$ (the first
segment in the path)
and redirect them to the index page : struct.php?page=$1
in the ...
1
vote
1answer
988 views
404 redirect - htaccess problems with subdomains
I've set a redirect 404 that is working fine for home directly but it does not work for subdomain. What I want no matter where the error comes it should direct to my main domain www.domain.com below ...
0
votes
1answer
168 views
forward Request parameters to custom 404 page using ErrorDocument in apache?
Is there a way to have the request parameters "forward on" to the custom error file in apache much like [QSA] does on rewrite rules?
if i send in www.foo.com/doesnotexist?bar=true
and i have this in ...
0
votes
2answers
445 views
.htaccess - Make a directory invisible
I have a .htaccess file that currently looks like:
<Files .htaccess>
order allow,deny
deny from all
</Files>
Options All -Indexes
IndexIgnore *
# Respond to /include/ with 404 ...
0
votes
1answer
275 views
Apache htaccess change 404 to 200?
I like to know if posible to change the 404 HTTP Status code into 200 for a specific file.
If that posible how can I do it ? Thanks ! :)
1
vote
1answer
1k views
“Spoofing” a 404 not found error with .htaccess
I have .htaccess currently set up to rewrite anything without a period or slash to the equivalent with a .php extension (so "foo" internally pulls up "foo.php") via the following:
RewriteCond ...
1
vote
1answer
382 views
404 error with Apache rewrite and userdirs
On my computer I have an Apache server with rewrite and userdir modules enabled.
The website is located in /home/pedro/Dropbox/www/cocina/ and the webserver root is /home/pedro/Dropbox/www/
If go to ...
0
votes
0answers
101 views
Redirect with mod_rewrite instead of a 404 response
I want to make so the users should be redirected to the home page, if the page doesn't exist.
The url structure is example.com/site/page/id. The parameters page and id are dynamic, so if the user ...
0
votes
0answers
318 views
Problem with htaccess rewrite rule when Apache server running on port other than 80
When server was running on port 80 everying was working smoothly with fallowing condition in .htaccess file. When server port is changed to 8008 in http.conf file 404 error displayed.
...
0
votes
2answers
397 views
Two regex rewrite rules to redirect 404 urls
I am having the following two urls that give me some nasty 404 errors that I would like to fix by adding some rewrite rules to apache and I must recongnize that I don't understand regular expressions ...
1
vote
1answer
109 views
mod_rewrite - some requests being rewritten should produce a 404 but don't
I've been working on creating seo friendly urls for my site and have done this successfully with the following rules:
RewriteEngine on
RewriteBase /
#redirect non www to www
RewriteCond %{HTTP_HOST} ...
2
votes
2answers
873 views
Cleaning up 404 Errors with 301 mod rewrite or a pretty solution
I have multiple web sites for my clients and each client has a directory labelled articles. I just inherited this system and I until I can fix the issue I found, I am looking for stopgap solution, one ...
2
votes
2answers
3k views
How to configure an Apache rewrite-rule to redirect all requests to 404 unless explicitly allowed
I'm searchin on internet since yesterday and i couldn't find the answer. At least one that works for apache2.
I just want a set of rewritemod rules that will make apache redirect everything to a 404 ...
0
votes
1answer
2k views
“Rewrite Action” 404 Server Error! (IIS 7.0 MS URL Re-Write Module)!
Can anyone tell me why this is returning a 404 but works when I redirect it!
<rule name="Static All Paging" stopProcessing="true">
<match url="(.*)page-([0-9]+)$" />
<action ...
0
votes
1answer
143 views
How to Redirect static urls to small urls
I recently changed my site url structure. But, Google indexed urls are giving 404 not found errors. Now, I asked for help and got suggestion like this.
RewriteRule ^([a-z|-]+)t(\d{3}-\d+\.html)$ ...
0
votes
2answers
1k views
mod_rewrite 404 and rewrite is not working
Greetings,
I cant get my htaccess mod_rewrite working as it should..
I have some basic RewriteRules for some static underpages, a redirect from the non www-version and now I would like to add a ...
0
votes
1answer
41 views
Issue with regular expression on modrewrite
So I am working with mod rewite
RewriteRule ^/?([a-z]+)$ $1.cfm
so myurl.com/about.cfm is rewritten as myurl.com/about
The problem I am having is with urls with underscores or dashes
...
0
votes
1answer
453 views
apache rewrite map redirect to 404
My Situation:
I implemented an apache Rewrite Map to redirect incoming requests based on a database
RewriteEngine On
RewriteMap dbapp prg:/usr/local/somewhere/dbapp.rb
RewriteRule ^/(pattern)$ ...
0
votes
4answers
7k views
Codeigniter 404 can't find index.php (only on real server, not on virtual server)
I got a working webpage with CodeIgniter. I did now just upload it to my webserver and it gives me a 404 error.
The browser address is "web-page.com/folder/en/about"
The baseurl in the config is ...
2
votes
4answers
5k views
Apache .htaccess: ErrorDocument and RewriteEngine not working together
Please take a look at the following .htaccess
ErrorDocument 404 /404/
RewriteEngine On
RewriteRule (.*) index.php [L]
With this setup, I am using header('HTTP/1.1 404 Not Found'); in PHP to ...
2
votes
3answers
998 views
Browser language based 404 pages with mod_rewrite how to
I am trying to generate language dependant 404 (also other errors) pages purely based on Apache mod_rewrite rules by evaluating the clients HTTP Accept-Language header. I've managed to show the ...
