Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Software Development
Programming
Programming Q&A
[HTACCESS] Multiple URL Segments
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="NSA" data-source="post: 209647" data-attributes="member: 10034"><p>Right now I have something like this in my htaccess</p><p> </p><p>[CODE]RewriteEngine On</p><p>RewriteRule ^index$ index.php [L]</p><p> </p><p> </p><p>RewriteEngine On</p><p>RewriteBase /</p><p>RewriteRule ^index/page/([a-z-0-9]+)/?$ index.php?page=$1 [NC,QSA,L][/CODE]</p><p> </p><p>It allows you to put localhost/index/page/[num] instead of index.php?page=[num]</p><p>Maybe you could get something from this?</p></blockquote><p></p>
[QUOTE="NSA, post: 209647, member: 10034"] Right now I have something like this in my htaccess [CODE]RewriteEngine On RewriteRule ^index$ index.php [L] RewriteEngine On RewriteBase / RewriteRule ^index/page/([a-z-0-9]+)/?$ index.php?page=$1 [NC,QSA,L][/CODE] It allows you to put localhost/index/page/[num] instead of index.php?page=[num] Maybe you could get something from this? [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Software Development
Programming
Programming Q&A
[HTACCESS] Multiple URL Segments
Top