Directory-level configuration file used by Apache web servers.
1
vote
2answers
25 views
Enable register_globals in PHP 5.4
I am having a framework that uses register_globals. My local php version is 5.4. I know register_globals is DEPRECATED since PHP 5.3.0 and REMOVED in PHP 5.4. But i have to make it work on PHP 5.4, Is ...
2
votes
1answer
20 views
All pages Redirecting to one page .htaccess
I am getting problem with .htaccess ... all my pages are getting redirect to one page
here is my .htaccess
EDITED
<FilesMatch "\.(html|css|js|gif|jpg|jpeg|png|ico|swf)$">
Header set ...
0
votes
0answers
20 views
Using htaccess and mod_rewrite to display new-page instead of newpage
I'm working on my website and I created a few new web pages that explains more details of my website. Now for seo purposes I know google prefers for the link to contain the key words. So the pages I'm ...
0
votes
0answers
5 views
htaccess redirect when non development domain is active
I have a domain staticbackup.mydomain.com which has a static backup of the main site incase of server failure I can quickly switch the www. cname to point to staticbackup.mydomain.com (A record)
On ...
1
vote
1answer
11 views
How to mask sub-directory using .htaccess
When a visitor visits my site and reads a post, they see this in the address bar:
http://www.example.com/sub/?p=71
How can I mask the url so that it shows this in the address bar:
...
-4
votes
2answers
22 views
Add slash to 301 [closed]
Here's my htaccess
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.co.uk$
RewriteRule (.*) http://www.example.co.uk$1 [R=301]
When I try and get it working it's giving my urls with no slash. For ...
0
votes
0answers
15 views
404 Error handling/htaccess for subdomains
I would like to have a 404 error page. This will be in the root direction.
The problem I have is that in my .htaccess I have set the following relative path:
ErrorDocument 404 /404.php
This ...
0
votes
3answers
21 views
Order of rules in .htaccess file
I have an .htaccess file like this:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^foo.*$ /cgi/foo.cgi [L]
RewriteRule ^.*$ /cgi/fallback.cgi ...
0
votes
2answers
40 views
Can I know on PHP (without javascript) if a user has right-clicked oppening a link?
I was coding from some ideas collected over the web a "solution" to redirect all pdf, for example, downloads on a server to a reCAPTCHA form and, after passed, download the requested file. It is cms ...
0
votes
1answer
8 views
Redirect index.php to root, and www to non www with rewrite_mod
someone knows how can i redirect in the .htaccess this rules bellow ?
http://www.domain.com/index.php to http://domain.com
and
http://www.domain.com to http://domain.com
many tanks
0
votes
2answers
9 views
Easy way to manage pretty URLs
I've been looking forever for a good example to show how to easily create pretty URLs that accomplish the following:
http://www.example.com/posts/some_string_here
to allow a php page to serve up the ...
0
votes
1answer
10 views
.htaccess remove RewriteBase
The following .htaccess code is used at my /business/ website, and as it is a demonstration website I would have to copy it several times, with different folder names... Like /business/ /restaurants/ ...
0
votes
1answer
15 views
How to map three Websites under one domain to their folders with mod_rewrite only?
I have a project that has a splash page that points to two separate sites. The sites are hosted on the same server and they should be in separate folders for better maintenance.
The folder structure ...
0
votes
0answers
14 views
htaccess redirect if is iphone but not if querysring
what am i doing wrong?
as you see in the title i'd like to redirect to folder /mobile if its iphone & co
but only if there is NO querystring 'fullversion=true'
what i have so far is:
...
0
votes
1answer
14 views
Display contents of domain folder on sub domain root
I have a website at root of main domain, let's call it domain(dot)com, this site runs a template based system through htaccess, similar to wordpress.
On there i have a section called ...
0
votes
1answer
13 views
How to exclude a RewriteRule?
I have the following RewritRule in my .htaccess what causes a problem for further actions:
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
Now I would like ...
0
votes
0answers
28 views
htaccess forward one url differently
I am learning my way around the MVC framework. One of those aspects is the htaccess file, to clean up that URL. Now, I've finally come up with the htaccess you see below, but need to accomplish 3 more ...
0
votes
2answers
13 views
rewrite part of url using htaccess
I have a url like this:
http://localhost/mysite/application/assets/projects/projectname
I want this:
http://localhost/mysite/projectname.
I'm using this code in .htaccess
RewriteEngine on
RewriteRule ...
1
vote
2answers
59 views
How to put php GET params in a HTML file?
I have a PHP file which returns me a JSON array based on the GET parameters set. I don't want to reload the page so I made a simple function using jQuery + AJAX to show the result in a div tag.
But ...
0
votes
1answer
17 views
.htaccess 301 redirect active - Yet Google Analytics (Realtime) shows many active visitors on the old site
As the title says, I am redirecting example.me to example.com. Here's my .htaccess in example.me:
# DESKTOP #
Options +FollowSymLinks
Options -Multiviews
RewriteEngine On
RewriteBase /
# DISABLE ...
0
votes
1answer
6 views
Redirecting with htaccess rewrite map
I am using following code to redirect all url with capital case latter in it to equalant small-case version of same url.
RewriteEngine On
RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule (.*) ${lc:$1} ...
0
votes
1answer
38 views
What is the best practice to create an AJAX navigation?
I'm trying to build a website which doesn't reload all the page each time the user press the link of the navbar. So I'm using jQuery and AJAX with GET to load the corresponding html file in a div tag. ...
-2
votes
0answers
15 views
want to disable htaccess from updating the default php values set in php.ini [closed]
In my development server PHP is installed as Apache module.
Some developers are changing php values for some projects by putting like "php_value memory_limit 512M" in htaccess file.
I want to ...
0
votes
1answer
10 views
Links starting with double slashes cause invalid requests
All links on my website are protocol-less and start with double slashes:
href="//site.com/page.html".
And in the log I see many requests like: 404 - site.com/site.com/page.html
Which means some ...
0
votes
1answer
24 views
Symfony: htaccess to hide app.php or app_dev.php
I know this has been asked many times, but something strange is happening to me. Apache DocumentRoot is pointing to symfony/web/ and this is my .htaccess inside web/ dir:
DirectoryIndex app_dev.php
...
0
votes
0answers
40 views
how to set “ShibRequireSession” on or off for a URL in htaccess
I want some thing like this, when a user visits a url www.example.com no rules is applied on it but, when user visits www.example.com/something else rules should be like,
...
1
vote
0answers
49 views
MVC Internal Server Error
I'm trying to build an PHP MVC.
I currently watching this tutorial link
But from the start its not working. I'm running it in WAMP
It gives me this error:
Internal Server Error
The server ...
1
vote
1answer
16 views
Use htaccess to redirect list of tor exit node IPs to a page
Edit: Cron was fine, I had forgotten to turn RewriteEngine On, leaving this here in case anyone else wants to do the same as I couldn't find a guide anywhere.
It's been a while since I've used Apache ...
1
vote
1answer
17 views
.htaccess redirect all URLs beginning with
I've already read all helps here and everywhere, but I can't solve my problem.
I got hundreds of urls 404 links
I would like use htaccess to redirect all URLS beginning with /rstu1s/it? and redirect ...
0
votes
0answers
25 views
.htaccess 301 redirection removing white space [duplicate]
My site link is containing name with lots of white space in parameter.
file.php?dir=Songs/Bollywood%20Mp3/I%20Dont%20Luv%20U-2013
file.php?dir=Songs/Bollywood%20Mp3/Go%20Goa%20Gone-2013
...
0
votes
2answers
23 views
Allowing only certain servers/websites connect to script
I have a JavaScript script, which I want to sell to my clients. The problem is there are no on site changes required for the script to work so they can simply link to the script and get the benefits - ...
1
vote
1answer
20 views
Redirection to 404 pages with .htaccess
I have created a folder in my localhost named "example".and I have added 4 files inside that folder.
index.php
about.php
.htaccess
404.php
when I type the url http://www.localhost/example/123 ...
0
votes
0answers
7 views
htaccess file to redirect all but root page to other domain (good idea or not?)
I have the following issue:
I have a website running on website.com
It has nice PageRank and many incoming links, however the website is in Dutch and we get more and more international clients.
...
0
votes
0answers
11 views
How do I do this 301 redirect regex?
How do I 301 redirect files beginning with "page-".html to the homepage?
ie: /page-1.html, /page-2.html, etc. to homepage.com
Is this roughly correct?
RedirectMatch 301 /page-(.*)\.html ...
-1
votes
0answers
6 views
Converting htaccess content to web.config content [closed]
can anybody please convert following htaccess code to web.config for me. Thanks in advance
RewriteEngine on
Options +FollowSymlinks
Rewritebase /careers
RewriteCond %{REQUEST_FILENAME} !-f
...
0
votes
1answer
11 views
is it possible to change URL of webpage using .htaccess and also want to protect folders using .htaccess?
I want to change Webpage URL http://www.xyz.com/in/index.php?mpid=page1 to http://www.xyz.com/in/page1 using .htaccess.
And also want to protect my folders with username and password.
2
votes
1answer
39 views
URL Rewrite Regular Expression to suit all
Brief Explanation
I am trying to come up with a smart way of controlling my web page rewrites with as few rewrites as possible.
So, for example, if you have the following page translations:
...
0
votes
1answer
12 views
Htaccess Not Working - Redirect 301
Due to some bad URLs, we generated some links that don't work and I want to redirect them with a 301 redirect to clear up some webmaster tools issues with Google.
So, we have this URL like this:
...
0
votes
1answer
13 views
How do you set a custom environment variable (htaccess) based on device?
How would you perform a simple mobile browser check and store the resulting boolean in an environment variable in .htaccess so that PHP can do a simple DEFINE('ISMOBILE',(env check ? true : false)); ...
-5
votes
1answer
40 views
enabling .htaccess but leave index.php to show [closed]
Is there a possibility to enable .htaccess (renaming htaccess.txt to .htaccess) but leave index.php to continue showing in url ?
Appreciate every help.
Ok, but this is original htaccess file as it ...
0
votes
0answers
18 views
Rewrite Engine @font-face
i have a problem with my .htaccess and @font-face.
I Get this Error:
Resource interpreted as Stylesheet but transferred with MIME type text/html
My .htaccess look like this:
RewriteEngine On
...
0
votes
2answers
65 views
Resource interpreted as Stylesheet but transferred with MIME type text/html with css generated in PHP
i have a site where the css is not interpreted. I've seen other answers but not one for a dinamically generated css.
I'm generating the CSS in PHP by adding
<link media="all" type="text/css" ...
2
votes
1answer
28 views
Htaccess : making Fake folder to get accessible/
I have created folder http://domain.com/sport/
What i need is whenever i access http://domain.com/sport/anything/anything/ , it needs to show contents of http://domain.com/sport/index.php
Right ...
1
vote
2answers
42 views
Redirecting everything to index.php and stripping last slash
i currently have the code below to redirect all requests (except files) to the index.php unfortunately i cannot get my script to work because of some strange mime type error happening when my url ends ...
0
votes
0answers
6 views
How can I set an Expires Header in Apache .htaccess for TypeKit .js to increase performance?
In YSlow tool for Firefox, it advises me to set a better Expires Header for TypeKit.js .
Currently my expires part of htaccess looks like this:
<IfModule mod_expires.c>
ExpiresActive on
...
0
votes
2answers
23 views
.htaccess Rewrite Rule Possibility?
I'm having a little issue. One of my clients recently sent out an email blast to 6500 people, that included an invalid link to a PDF file.
The link was simply: http://theirsite.com/pdf/thepdf.pdf%20
...
0
votes
2answers
19 views
301 redirect but change URL to all lower case in apache
I'd like to set up a 301 redirect in Apache to change the case of the original address before redirecting. So for example if someone enters:
www.website1.com/UsErOfMiXedCase
it should forward to
...
0
votes
1answer
15 views
Mod_write, htaccess and Wordpress slugs
This is either blindingly simple or impossible; after lots of Googling and thread reading, I can't tell.
I have a WordPress site that uses a plugin to create a custom post type. The rub of this is ...
-1
votes
0answers
21 views
.Htacess page is not woking in (go-daddy linux) [closed]
htacess page for .php extensions,
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
## hide .php extension
# To externally redirect /dir/foo.php to /dir/foo
...
0
votes
1answer
12 views
apache htaccess multiple http method condition
Hej folks,
i'm desperately trying to build a REST like API. Therefore i created an .htaccess file which should redirect the request to the right file, depending on the request method.
I managed to ...






