Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
htaccess mod_rewrite
- Page 1
Re: Running Apache Tomcat behind a IIS reverse proxy with SSL termination
Programming
Web Development
1 Month Ago
by blud
IIS should be able to do this just fine - "Bad Gateway" actually has a lot of different subcategories in IIS, so the first thing is to figure out which of those sub categories this falls into. This can sometimes be defined on the error pages if they are enabled. Connection Timeout - This is generally the most common and usually has to …
Running Apache Tomcat behind a IIS reverse proxy with SSL termination
Programming
Web Development
1 Month Ago
by riahc3
Hello Havent been here in a while but might as well give it a shot. I have several Apache Tomcat instances running on a Windows Server on different ports. They are all HTTP. The idea would be to (on the same server) install a IIS and use it a content switcher and also as a SSL terminator. This was depending on the URL, the IIS would …
Re: how to get back visual basic 6 project again on coding again
Programming
1 Month Ago
by Salem
> my hard disk has been damaged, and entire project has been collapsed. Did the disk just "stop working" one day, or has it been rotting slowly over time? Or does "damaged" mean "I deleted the source folder". If that happened yesterday, you might have a chance. If that was months ago, most of it is probably …
Re: What are the AI writing tools?
Hardware and Software
Networking
2 Months Ago
by AussieWebmaster
You can use free versions of ChatGPY or Gemini and then run through Grammarly and ask it to rewrite in your voice if you use it often I have been using RivalFlow - new part of SpyFu - I have paid version but believe there is a free trial or free slight access
Re: Is there a grand attack to make DaniWeb posts garbage ?
Community Center
Geeks' Lounge
2 Months Ago
by Dani
As Jim points out, we typically review *all* new posts since our last visit, every time we visit DaniWeb, and delete as necessary. It would therefore be the exact same amount of work for the mod team whether those posts are already visible on the site or waiting in a moderation queue. However, while it's the same work for us, I think there's an …
Re: Escape in-app browser?
Programming
Web Development
1 Month Ago
by Dani
rproffitt, alexxx does not have the ability to edit raw HTML within his Instagram bio. Instead, the link has to point to a URL that uses deep linking to redirect the final destination URL to open in Safari. I am not familiar enough with mobile development to know how to do this, but, yes, it does involve writing code. I also want to point out …
Re: masking a url using .htaccess / Mod ReWrite based on variable value
Programming
Web Development
10 Years Ago
by showman13
… would certainly resolve a lot of issues for me. The .
htaccess
file that I currently use is this: php_value session.gc_maxlifetime…
masking a url using .htaccess / Mod ReWrite based on variable value
Programming
Web Development
10 Years Ago
by showman13
Here is the scenario... I have a website that orignated as an MLM / retail combination site... It was determined that we needed some seperation between the Rep portion and the Retail portion, so I spent weeks modifying the code in over 40 scripts to separate a visitors path basedn on their point of entry, so all the displayed graphics and content…
mod-rewrite on godaddy server
Hardware and Software
Linux and Unix
14 Years Ago
by bjeffries
… the answer and cannot find it. Here is my entire .
htaccess
file: #Rewrite Rules Options -MultiViews Options +FollowSymLinks +Indexes RewriteEngine on…
Mod Rewrite
Digital Media
UI / UX Design
14 Years Ago
by ppetree
….php[/url] [b]This is the mod-rewrite from the
htaccess
:[/b] [code] Options +FollowSymlinks +ExecCGI RewriteBase / RewriteRule ^review_photos-(.+)-([0-9…
Re: Mod Rewrite with get variable
Programming
Web Development
12 Years Ago
by LastMitch
**@dan_code_guru** >How do i mod rewrite so that i have a page with a get variable is passed to parameter. Try this **Mod Rewrite Generator**: http://www.generateit.net/mod-rewrite/ If you really want to learn how to write it by hand then read this: http://www.cyberdesignz.com/blog/website-design/url-rewriting-top-5-ways-of-php-url-…
Re: Mod Rewrite with get variable
Programming
Web Development
12 Years Ago
by LastMitch
>LastMitch - thank you for the Mod Rewrite Generator. I have never seen that before and will make my life so much easier - woohoo :) Actually got that **Mod Rewrite Generator** link from **diafol** when he helping someone with it. I can't take credit for finding this link but I do used it and like you mention it's very useful!
Mod Rewrite Help
Programming
Web Development
14 Years Ago
by sacarias40
I already have a mod rewrite directing all traffic in my site through my domain.com/index.php file. i because this is happening, i need another rewrite to make any call to the url of: domain.com/blog to actually go to [url]http://domain.com/blog/index.php[/url] instead of just back to my normal domain.com/index.php is there anybody out …
mod rewrite directories to subdomains help
Hardware and Software
Linux and Unix
18 Years Ago
by dylan34
i have this directories: example.com/mister23/ example.com/mister45/ example.com/mister67/ and so on and i wanna make them look like this mister23.example.com mister45.example.com mister67.example.com i've aleardy setup a wildcard dns and i've edit the vhost.conf file too, all i need is the mod rewrite . tnx allot
mod rewrite - the 3 variables
Programming
Web Development
13 Years Ago
by piotrekw
Hi How to write code mod-rewrite for 3 variables. Ma actualy code: [CODE]AddType text/x-component .htc AddType application/x-httpd-php .html Options FollowSymLinks RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^/]+)/([^/]+)$ index.php?s=$1&pods2=$2&pods3=$…
mod-rewrite rule help
Programming
Web Development
12 Years Ago
by vlowe
Hi, Please help me work out this mod-rewrite issue while trying to make my urls SEF. RewriteEngine On Options +FollowSymLinks # Browse Category RewriteRule ^category/[!/.]*([A-Za-z]+)/?$ /browse.php?cat=$1 [NC,L] # View Item RewriteRule ^view/([0-9]+)/([a-zA-Z0-9-]+)$ /view.php?item_id=$1&sef=$2 [NC] …
Mod Rewrite with get variable
Programming
Web Development
12 Years Ago
by dan_code_guru
How do i mod rewrite so that i have a page with a get variable is passed to parameter. I want page.php?id=67/images to go to images.php?pageId=67 Thanks
Re: Mod Rewrite with get variable
Programming
Web Development
12 Years Ago
by simplypixie
LastMitch - thank you for the Mod Rewrite Generator. I have never seen that before and will make my life so much easier - woohoo :)
Re: masking a url using .htaccess / Mod ReWrite based on variable value
Programming
Web Development
10 Years Ago
by showman13
… username in url $memuser = $_GET['m']; // gets site owner from .
htaccess
if first page visited }else{ $memuser='orphanage'; // default to the…
Re: masking a url using .htaccess / Mod ReWrite based on variable value
Programming
Web Development
10 Years Ago
by diafol
Perhaps if you gave us an example of some domain names and the rewritten ones you wish to use. Also specifically which "variables" could be used to rewrite/redirect
Re: masking a url using .htaccess / Mod ReWrite based on variable value
Programming
Web Development
10 Years Ago
by showman13
Actually, the decision has been made that it needs to be a totaly separate entity, because the fact that there is an income opportunity (MLM) attached seems to have a negative impact on participation as a customer. So to circumvent that impact, total separation will remove the stigma and make it a clean retail product offering. And if I would …
Re: Mod rewrite page anchor
Digital Media
UI / UX Design
12 Years Ago
by LastMitch
**@s0wh4t** >I read it's not possible, is it? Did you actually read it closely? Since you didn't understand what was in the link. Then try this **Mod Rewrite Generator**: http://www.generateit.net/mod-rewrite/ If you don't know how to used that either than I don't know what else to tell you.
Re: Mod rewrite page anchor
Digital Media
UI / UX Design
12 Years Ago
by LastMitch
**@s0wh4t** >should be ok? anyway, not working. May I ask what is the issue? You are getting close to the answer just missing some slashes. It's not that hard to used the **Mod Rewrite Generator** Did you try the link: http://www.generateit.net/mod-rewrite/
Re: Mod rewrite page anchor
Digital Media
UI / UX Design
12 Years Ago
by LastMitch
**@s0wh4t** >I've got 3 tabs with Jquery. You never mention this at the beginning. I assume something similiar to this http://jqueryui.com/tabs/ >it wont go there, just says at index page. That's Correct because it's the index page! You can't used **Jquery tabs** as individual pages to **Mod Rewrite** because it's only **1** page! …
Re: Problems with mod rewrite
Programming
Web Development
15 Years Ago
by saiprem
… following; - turned on the SEO - enabled mod rewrite in .
htaccess
- enabled the SEF component in its configuration - changed the…think it is not necessary to change anything in the .
htaccess
file, Please revert it back and just put the …will works for you. If you don't have older
htaccess
with you, Just get it from joomla downloaded code …
Re: Problems with mod rewrite
Programming
Web Development
15 Years Ago
by switgal
… the following; - turned on the SEO - enabled mod rewrite in .
htaccess
- enabled the SEF component in its configuration - changed the… .
htaccess
file and put [CODE]RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,…
BASE href required when using mod rewrite?
Programming
Web Development
13 Years Ago
by minitauros
… a way of ../, and if I rewrite my url using
mod_rewrite
, ../ would point to the wrong directory. So my question would… can I point to my css files correctly when using
mod_rewrite
, [I]without [/I]using the <base> tag (in…
IPB 2.0.0 mod rewrite
Digital Media
Digital Marketing
Search Engine Strategies
19 Years Ago
by iwonder
Can anyone help me with this , instead of posting at their i thought more smart people will be here :P , I need this mod rewrite thing for SEO in IPB. 2.0.0 that is the url`s changed to html format , Searched google but most of are for 1.3 and others are useless crap . plz help
regarding vbulletin mod rewrite
Hardware and Software
Linux and Unix
19 Years Ago
by cather
hi, i wish to include the forum session in my site i want the exact procedure and steps to be followed for the mod rewrite of urls. the urls should describe the domain name followed by the forum name and then by the forum number that has been posted. i.e. it should look like [url="http://www.site.com/forum/forum-1.(php/htm"]http…
Problems with mod rewrite
Programming
Web Development
15 Years Ago
by switgal
Hell everyone, I have a problem with joomla urls which i am trying to make user friendly. so far with mod rewrite i have managed to come up with a url like this; [url]http://www.edulinksuganda.com/component/option,com_artband/task,details/id,59184/Itemid,75/idd,19/[/url]. but i want it to be something like: [url]http://www.edulinksuganda.com/…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC