Tagged Questions
1
vote
0answers
122 views
Handling URL Rewrite in IIS5
On an older server, using IIS5, I have an error handling page which for some missing pages uses Server.Transfer to load other pages based on a database.
The pages all work for a browser but some ...
5
votes
2answers
1k views
Rewrite rule to show as directory using .htaccess
I want to implement a rewrite rule in my .htaccess file to show a specific url as a directory of my server. See the code below I written,
RewriteRule ^(.*)/$ ?page=$1 [NC]
This will rewrites urls ...
2
votes
1answer
93 views
file need to go through a php page using .htaccess
I'm looking for a way to convert this type of url : h11p://www.mywebsite.com/dl/F5EGD6
Into h11p://www.mywebsie.com/dl/files/my_file.zip sing a PHP page to request the URL from the DB with F5EGD6. I ...