Can you create front-end for .HTACCESS?
Posted: Fri Oct 08, 2010 9:22 am
Hi all.
I need to create a way of applying shorturls to pages. I've seen it on some web sites where www.domain.com/thispage is actually going to some long URL.
I either need to do it using HTACCESS, or is there a way to create a FOLDER and a HTML with dynamic numbers in the code, on the fly?
So for example, you have www.somedomain.co.uk, and someone creates an account.
I want that account to create a /joseph on the fly, either thru htaccess, or a physical folder on the server. With either a meta refresh redirect, or a
Type code placed into the file.
I've really no idea how to do either, or what is the best method to do it and manage.
I need to create a way of applying shorturls to pages. I've seen it on some web sites where www.domain.com/thispage is actually going to some long URL.
I either need to do it using HTACCESS, or is there a way to create a FOLDER and a HTML with dynamic numbers in the code, on the fly?
So for example, you have www.somedomain.co.uk, and someone creates an account.
I want that account to create a /joseph on the fly, either thru htaccess, or a physical folder on the server. With either a meta refresh redirect, or a
Code: Select all
<script>
window.location.replace('https://www.domain.co.uk/index.php?page=myprofile&u=y')
</script>I've really no idea how to do either, or what is the best method to do it and manage.