Trying to modify display of my url for html index pageHow do I forward requests to another URL without actually changing the URL in Apache?.htaccess rewrite rule for CSS request.htaccess modify rules and redirect if there's .php in the urlfile system not taking precedence over htaccess RewriteRule?Apache + Codeigniter + New Server + Unexpected ErrorsURL redirection from .php to .html Rewrite URL based on HTTP_HOSTNginx - redirect all url's to root (not show the HTML page in the URL?)How to map apache to use an index file inside another directory in www/html/ without reflecting on urlnginx rewrite url without changing browser address
Which European Languages are not Indo-European?
Why is the Eisenstein ideal paper so great?
Did this character show any indication of wanting to rule before S8E6?
Of strange atmospheres - the survivable but unbreathable
Are runways booked by airlines to land their planes?
3 prong range outlet
What would prevent living skin from being a good conductor for magic?
Finding all files with a given extension whose base name is the name of the parent directory
Why does the Starter Set wizard have six spells in their spellbook?
How to melt snow without fire or using body heat?
Heat lost in ideal capacitor charging
I want to ask company flying me out for office tour if I can bring my fiance
Time complexity of an algorithm: Is it important to state the base of the logarithm?
Navigating a quick return to previous employer
The Maltese Falcon
Why sampling a periodic signal doesn't yield a periodic discrete signal?
Cardio work for Muay Thai fighters
The disk image is 497GB smaller than the target device
Gravitational Force Between Numbers
Shorten or merge multiple lines of `&> /dev/null &`
I want to know what marumaru means
Can a ring of spell storing and access to Find spells produce an endless menagerie?
Why would a rational buyer offer to buy with no conditions precedent?
Why does Bran want to find Drogon?
Trying to modify display of my url for html index page
How do I forward requests to another URL without actually changing the URL in Apache?.htaccess rewrite rule for CSS request.htaccess modify rules and redirect if there's .php in the urlfile system not taking precedence over htaccess RewriteRule?Apache + Codeigniter + New Server + Unexpected ErrorsURL redirection from .php to .html Rewrite URL based on HTTP_HOSTNginx - redirect all url's to root (not show the HTML page in the URL?)How to map apache to use an index file inside another directory in www/html/ without reflecting on urlnginx rewrite url without changing browser address
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
What I would like to do is serve up a file such as "index.html" and have the url read mysite.com/boat-repair/electrical-system-repair.
I tried putting the target file in a series of sub directories hoping the directory names would show in the address bar,but that still just pulls up the target file and does not change the address bar. I see this all the time but I just can not seem to find the resources I need to figure it out.
I tried this as an experiment:
RewriteEngine On
RewriteRule ^boat-repair/?$ boat-repair-electrical-system-repair.html
and when I typed in mysite.com/boat-repair.html it just displayed a test html page I have named boat-repair.html, did not change the url and did not load the boat-repair-electrical-system-repair.html page.
Clearly I am missing something here, can someone please point me in the right direction. I have been researching this for many hours and clearly still do not have a clue on how to accomplish my goal.
.htaccess mod-rewrite rewrite
add a comment |
What I would like to do is serve up a file such as "index.html" and have the url read mysite.com/boat-repair/electrical-system-repair.
I tried putting the target file in a series of sub directories hoping the directory names would show in the address bar,but that still just pulls up the target file and does not change the address bar. I see this all the time but I just can not seem to find the resources I need to figure it out.
I tried this as an experiment:
RewriteEngine On
RewriteRule ^boat-repair/?$ boat-repair-electrical-system-repair.html
and when I typed in mysite.com/boat-repair.html it just displayed a test html page I have named boat-repair.html, did not change the url and did not load the boat-repair-electrical-system-repair.html page.
Clearly I am missing something here, can someone please point me in the right direction. I have been researching this for many hours and clearly still do not have a clue on how to accomplish my goal.
.htaccess mod-rewrite rewrite
1
The URL you typed in the browser doesn't match the pattern you used in the rewrite rule.
– Michael Hampton♦
May 10 at 0:35
add a comment |
What I would like to do is serve up a file such as "index.html" and have the url read mysite.com/boat-repair/electrical-system-repair.
I tried putting the target file in a series of sub directories hoping the directory names would show in the address bar,but that still just pulls up the target file and does not change the address bar. I see this all the time but I just can not seem to find the resources I need to figure it out.
I tried this as an experiment:
RewriteEngine On
RewriteRule ^boat-repair/?$ boat-repair-electrical-system-repair.html
and when I typed in mysite.com/boat-repair.html it just displayed a test html page I have named boat-repair.html, did not change the url and did not load the boat-repair-electrical-system-repair.html page.
Clearly I am missing something here, can someone please point me in the right direction. I have been researching this for many hours and clearly still do not have a clue on how to accomplish my goal.
.htaccess mod-rewrite rewrite
What I would like to do is serve up a file such as "index.html" and have the url read mysite.com/boat-repair/electrical-system-repair.
I tried putting the target file in a series of sub directories hoping the directory names would show in the address bar,but that still just pulls up the target file and does not change the address bar. I see this all the time but I just can not seem to find the resources I need to figure it out.
I tried this as an experiment:
RewriteEngine On
RewriteRule ^boat-repair/?$ boat-repair-electrical-system-repair.html
and when I typed in mysite.com/boat-repair.html it just displayed a test html page I have named boat-repair.html, did not change the url and did not load the boat-repair-electrical-system-repair.html page.
Clearly I am missing something here, can someone please point me in the right direction. I have been researching this for many hours and clearly still do not have a clue on how to accomplish my goal.
.htaccess mod-rewrite rewrite
.htaccess mod-rewrite rewrite
asked May 9 at 23:33
Randy MorganRandy Morgan
92
92
1
The URL you typed in the browser doesn't match the pattern you used in the rewrite rule.
– Michael Hampton♦
May 10 at 0:35
add a comment |
1
The URL you typed in the browser doesn't match the pattern you used in the rewrite rule.
– Michael Hampton♦
May 10 at 0:35
1
1
The URL you typed in the browser doesn't match the pattern you used in the rewrite rule.
– Michael Hampton♦
May 10 at 0:35
The URL you typed in the browser doesn't match the pattern you used in the rewrite rule.
– Michael Hampton♦
May 10 at 0:35
add a comment |
2 Answers
2
active
oldest
votes
Michael .. thank you for the clue... though more detail would have been helpful it got me thinking about how the rule is supposed to work.
This is the working code I came up with:
RewriteEngine On
RewriteRule ^/?$ /boat-repair/electrical-system-repair [NC]
RewriteRule ^boat-repair/electrical-system-repair/?$ /index.html [NC]
The first rule tells the server to serve up: boat-repair/electrical-system-repair when the root directory is entered.
The second rule tells the server if the pattern: boat-repair/electrical-system-repair is matched to serve up index.html
The file served up (index.html) in the last step can named anything you like as it will load, but not show in the address bar.
So after both rules are implemented you get: http://yoursitename.com/boat-repair/electrical-system-repair/ in the address bar, now I just need to figure out a way to remove the trailing slash.
These rules of course get put in the htaccess file.
In order for this to work you must have the folders named in the rules even if they are just dummy folders. If dummy folders be sure to put a text document in each folder named "DO NOT DELETE THIS FOLDER" so that six months down the road you do not look at these empty folders and delete them!
I hope this helps someone else trying to implement this on their site.
add a comment |
you may have already tried this but...is your server self hosted if so rest/reboot the server this might work because it may not be showing the file on the HDD instead the file loaded to the ram
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f966645%2ftrying-to-modify-display-of-my-url-for-html-index-page%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Michael .. thank you for the clue... though more detail would have been helpful it got me thinking about how the rule is supposed to work.
This is the working code I came up with:
RewriteEngine On
RewriteRule ^/?$ /boat-repair/electrical-system-repair [NC]
RewriteRule ^boat-repair/electrical-system-repair/?$ /index.html [NC]
The first rule tells the server to serve up: boat-repair/electrical-system-repair when the root directory is entered.
The second rule tells the server if the pattern: boat-repair/electrical-system-repair is matched to serve up index.html
The file served up (index.html) in the last step can named anything you like as it will load, but not show in the address bar.
So after both rules are implemented you get: http://yoursitename.com/boat-repair/electrical-system-repair/ in the address bar, now I just need to figure out a way to remove the trailing slash.
These rules of course get put in the htaccess file.
In order for this to work you must have the folders named in the rules even if they are just dummy folders. If dummy folders be sure to put a text document in each folder named "DO NOT DELETE THIS FOLDER" so that six months down the road you do not look at these empty folders and delete them!
I hope this helps someone else trying to implement this on their site.
add a comment |
Michael .. thank you for the clue... though more detail would have been helpful it got me thinking about how the rule is supposed to work.
This is the working code I came up with:
RewriteEngine On
RewriteRule ^/?$ /boat-repair/electrical-system-repair [NC]
RewriteRule ^boat-repair/electrical-system-repair/?$ /index.html [NC]
The first rule tells the server to serve up: boat-repair/electrical-system-repair when the root directory is entered.
The second rule tells the server if the pattern: boat-repair/electrical-system-repair is matched to serve up index.html
The file served up (index.html) in the last step can named anything you like as it will load, but not show in the address bar.
So after both rules are implemented you get: http://yoursitename.com/boat-repair/electrical-system-repair/ in the address bar, now I just need to figure out a way to remove the trailing slash.
These rules of course get put in the htaccess file.
In order for this to work you must have the folders named in the rules even if they are just dummy folders. If dummy folders be sure to put a text document in each folder named "DO NOT DELETE THIS FOLDER" so that six months down the road you do not look at these empty folders and delete them!
I hope this helps someone else trying to implement this on their site.
add a comment |
Michael .. thank you for the clue... though more detail would have been helpful it got me thinking about how the rule is supposed to work.
This is the working code I came up with:
RewriteEngine On
RewriteRule ^/?$ /boat-repair/electrical-system-repair [NC]
RewriteRule ^boat-repair/electrical-system-repair/?$ /index.html [NC]
The first rule tells the server to serve up: boat-repair/electrical-system-repair when the root directory is entered.
The second rule tells the server if the pattern: boat-repair/electrical-system-repair is matched to serve up index.html
The file served up (index.html) in the last step can named anything you like as it will load, but not show in the address bar.
So after both rules are implemented you get: http://yoursitename.com/boat-repair/electrical-system-repair/ in the address bar, now I just need to figure out a way to remove the trailing slash.
These rules of course get put in the htaccess file.
In order for this to work you must have the folders named in the rules even if they are just dummy folders. If dummy folders be sure to put a text document in each folder named "DO NOT DELETE THIS FOLDER" so that six months down the road you do not look at these empty folders and delete them!
I hope this helps someone else trying to implement this on their site.
Michael .. thank you for the clue... though more detail would have been helpful it got me thinking about how the rule is supposed to work.
This is the working code I came up with:
RewriteEngine On
RewriteRule ^/?$ /boat-repair/electrical-system-repair [NC]
RewriteRule ^boat-repair/electrical-system-repair/?$ /index.html [NC]
The first rule tells the server to serve up: boat-repair/electrical-system-repair when the root directory is entered.
The second rule tells the server if the pattern: boat-repair/electrical-system-repair is matched to serve up index.html
The file served up (index.html) in the last step can named anything you like as it will load, but not show in the address bar.
So after both rules are implemented you get: http://yoursitename.com/boat-repair/electrical-system-repair/ in the address bar, now I just need to figure out a way to remove the trailing slash.
These rules of course get put in the htaccess file.
In order for this to work you must have the folders named in the rules even if they are just dummy folders. If dummy folders be sure to put a text document in each folder named "DO NOT DELETE THIS FOLDER" so that six months down the road you do not look at these empty folders and delete them!
I hope this helps someone else trying to implement this on their site.
edited May 11 at 18:41
Community♦
1
1
answered May 10 at 16:58
Randy MorganRandy Morgan
92
92
add a comment |
add a comment |
you may have already tried this but...is your server self hosted if so rest/reboot the server this might work because it may not be showing the file on the HDD instead the file loaded to the ram
add a comment |
you may have already tried this but...is your server self hosted if so rest/reboot the server this might work because it may not be showing the file on the HDD instead the file loaded to the ram
add a comment |
you may have already tried this but...is your server self hosted if so rest/reboot the server this might work because it may not be showing the file on the HDD instead the file loaded to the ram
you may have already tried this but...is your server self hosted if so rest/reboot the server this might work because it may not be showing the file on the HDD instead the file loaded to the ram
answered May 10 at 0:20
B10NAYRYB10NAYRY
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f966645%2ftrying-to-modify-display-of-my-url-for-html-index-page%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
The URL you typed in the browser doesn't match the pattern you used in the rewrite rule.
– Michael Hampton♦
May 10 at 0:35