Skip to content
Advertisement

Tag: mod-rewrite

.htaccess – Permanently redirect to root when the website is accessed with mysite.com/index.php with no query string parameters?

I am using a template on my website. This template is designed in a way where everything is in the index.php file but the functions are executed based on the query string which is stick to the index.php file. I want to permanently redirect to the root mysite.com when my site is accessed with index.php with no query string parameters,

how to get url last part after slash as get value in php

My url is look like: http://localhost/event_manage?slug=hello and last value as like hello So that page is in index.php when i go http://localhost/event_manage/hello and shows error because there is no folder as named hello. But i want this hello is like GET value When I go http://localhost/event_manage/hello I tried in .htaccess file: But it still shows error and couldn’t pass the

Serve file from cache folder if it exists, otherwise rewrite to “index.php” using .htaccess

Suppose in root directory I have one file (called index.php) and one folder (called caches). I want that if the file exist in caches folder serve that file (caches/xxx.html) otherwise request send to index.php. For example I will send request to server: https://example.com/how-to-do and Apache search first in cache/. If how-to-do.html exists then send (rewrite Apache) how-to-do.html otherwise send request

.htaccess is causing 403 on one link only

Bit of an odd one and I feel it must be answered but I can’t seem to find it. I have the following in my .htaccess file on a custom PHP site (NOT WORDPRESS): I cannot work out why “gallery” only is giving me a 403. Both work as expected and go to the desired pages. However Redirects to And

Apache2 PHP – How do I use .htaccess to rewrite direct download links

I have a directory of files which are downloaded by users package managers using the direct link to the file. I’m trying to set up file logging, so I can get statistics on the downloads. I’m using this script I found on GitHub: https://github.com/iNamik/PHP-Download-Tracker I’m using the above script that consists of a files directory, a log directory, and an

Advertisement