.htaccess

Using .htaccess to server files from Amazon S3 CloudFront

My ideal setup would be to take a current clients site, upload a .htaccess with a regex inside, that would match the URI, and if it finds a certain file extension, it would use the same path, but with an altered domain. ie. Normal path: http://www.domain.com/something/images/someimage.jpeg http://www.domain.com/assets/js/jquery.js .h...

mod_rewrite: no access to real files and directories

Hello. I use mod_rewrite/.htaccess for pretty URLs. I forward all the requests to my index.php, like this: RewriteRule ^/?([a-zA-Z0-9/-]+)/?$ /index.php [NC,L] The index.php then handles the requests. I'm also using this condition/rule to eliminate trailing slashes (or rather rewrite them to the URL without a trailing slash, with a...

mod_rewrite: remove trailing slash (only one!)

Hello. I use mod_rewrite/.htaccess for pretty URLs. I'm using this condition/rule to eliminate trailing slashes (or rather: rewrite to the non-trailing-slash-URL, by a 301 redirect; I'm doing this to avoid duplicate content and because I like URLs with no trailing slashes better): RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{RE...

Allowing optional variables with Rewrite Cond

I currently have the following code: RewriteCond %{REQUEST_URI} !assets/ RewriteCond %{REQUEST_URI} !uploads/ RewriteRule ^([a-z|0-9_&;=-]+)/([a-z|0-9_&;=-]+) index.php?method=$1&value=$2 [NC,L] This works perfectly to redirect 'page/home' to 'index.php?method=page&value=home. However at some points I need to add an extra variable or...

Change file extension if browser is IE

Hi, I'm looking for the best solution to dynamically change some images extension (from .svg to .png) only if the browser is IE. I don't know what's the best solution : parse the html code with PHP use jQuery with something like $("img.svg2png").attr("src", ...); dealing with htaccess and rewrite rules other solution ? Thanks ! ...

Storing login attempts of users trying to get by a .htaccess password input field

I believe the title pretty much explains it. I would like to get access to what usernames/passwords users try when attempting to enter a webpage. Is there an easy way? Thanks ...

.htaccess not working on my server

Hello, I'm working on my project and now I want to transfer it from my localhost to server. Everything seems to work fine, but .htaccess doesn't work. The server should be suporting mod_rewrite and print_r(apache_get_modules()); shows mod_rewrite running. But still, when I type myaddress.com/contact, it shows error 404. Here is the ....

.htaccess file: Dynamic redirect

Hi! I've had a hard timing learning rewrite rules in .htaccess files, so I was hoping someone could show me how to rewrite this: test.com/home/feed/toak/nyheter/vg into this: test.com/index.php?r=home&f=feed;toak;nyheter;vg This is a dynamic URL, and can have multiple elements seperated by ; in the end. I want my users to be able to...

.htaccess regex rewrite rule

I have the following regex: RewriteRule ^blogs/([^/]*)/([^/]*) blogs/index.php?blogger=$1&blog=$2 This works fine for the following cases: http://myurl.com/blogs/blog-name/blog-article/ http://myurl.com/blogs/blog-name/blog-article http://myurl.com/blogs/blog-name/ however it does not handle: http://myurl.com/blogs/blog-name H...

mod_rewrite in .htaccess

Hey all, how can I reduce this: www.example.com/index.php?page=viewblog&category=awesome down to this: www.example.com/blog/awesome The above lists all of the blog posts in that category, but I also want scope for adding the title of the post on the end of it as well, like this: www.example.com/index.php?page=viewblog&category=awe...

Sub domains on the fly or Wild Card subdomains

Hey there Stack OVerflow Is it possible to redirect everything in a subdomain to the main domain. Eg anything.example.com something.anything.example.com must all go to example.com and anything.example.com/page.php something.anything.example.com/page.php must all go to example.com/page.php is this possible ? on a shared host ? ...

.htaccess 301 redirect old subdirectory to new subdirectory

I want to redirect www.abetteryoucoaching.com/business/interviewing_and_hiring.php to www.abetteryoucoaching.com/coaching-basics/business-coaching/interviewing-hiring.php using my htaccess file. That's it! ...

redirecting with mod-rewrite

The below rule I took from here and modified it (very little) so it adds a slash after removing the php file extension. RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)/$ $1.php So the url Domain.com/file.php will look like Domain.com/file/ And it works fine as long as I ...

How can I remove the .php extension using .htaccess rules?

I need for my .htaccess file to take away the .php file extension and replace it with just a trailing slash. Also, I have a profile.php page which will normally be visited with a numeric querystring parameter, like "profile.php?id=3". So on top of replacing extensions with slashes, how do I make "profile.php?id=3" look like "profile/3/...

How to rewrite urls using htaccess?

Using htaccess how to turn this type of URL: http://www.mysite.com/page.php?slug=hello-world into this type: http://www.mysite.com/page/hello-world And not just this one url but all urls in the 1st format to the 2nd format. ...

Redirect site.com/blog/ to site.com/blog/newarticle.html?

Hey, This one is kind of easy. How could I redirect people going to: http://site.com/blog/ To this: http://site.com/blog/somespecificurl/ I only have one post at the moment and want it to just redirect to post using .htaccess. Thanks! ...

mod_rewrite: remove trailing slash (only one!)

Hello. I use mod_rewrite/.htaccess for pretty URLs. I'm using this condition/rule to eliminate trailing slashes (or rather: rewrite to the non-trailing-slash-URL, by a 301 redirect; I'm doing this to avoid duplicate content and because I like URLs with no trailing slashes better): RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{RE...

URL Rewrite problem

RewriteEngine on RewriteRule bharani $ index.php in my .htaccess file . The above small snippet throwing 500 internal Server Error , ...

Zend Framework in sub directory

Hello, I would like to set up a Zend Framework project in a subdirectory: /public_html /public_html/here_i_want_to_setup_zf Document root is /public_html. I would like the Zend Framework project to be accessible via URI like this: http://example.com/here_i_want_to_setup_zf How should I edit my htaccess file? RewriteEngine On ...

.htaccess redirect

hi, i want to create a clean url, as in, let say, i have a site www.mywebsite.com, i want, if anybody tries http://www.mywebsite.com/something, he should get redirected to www.mywebsite.com, so any thing that is typed ahead of mywebsite.com/ they should get redirected to www.mywebsite.com how can i do this in .htaccess, kindly help....